#ifndef CONTENT_PUBLIC_BROWSER_PRESENTATION_OBSERVER_H_
#define CONTENT_PUBLIC_BROWSER_PRESENTATION_OBSERVER_H_
#include "base/observer_list_types.h"
#include "content/common/content_export.h"
namespace content {
struct PresentationRequest;
class CONTENT_EXPORT PresentationObserver : public base::CheckedObserver {
public:
virtual void OnPresentationsChanged(bool has_presentation) {}
virtual void OnDefaultPresentationChanged(
const content::PresentationRequest* presentation_request) {}
};
}
#endif