#ifndef CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_BUBBLE_MODEL_DELEGATE_H_
#define CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_BUBBLE_MODEL_DELEGATE_H_
#include "chrome/common/content_settings_types.h"
namespace content {
class WebContents;
}
class ContentSettingBubbleModelDelegate {
public:
virtual void ShowCollectedCookiesDialog(
content::WebContents* web_contents) = 0;
virtual void ShowContentSettingsPage(ContentSettingsType type) = 0;
protected:
virtual ~ContentSettingBubbleModelDelegate() {}
};
#endif