Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: chrome/browser/ui/content_settings/content_setting_bubble_model_delegate.h

Issue 9479008: Re-factor location bar/toolbar code to get rid of the browser dependency. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: call right overloaded method Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_BUBBLE_MODEL_DELEGATE _H_
6 #define CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_BUBBLE_MODEL_DELEGATE _H_
7 #pragma once
8
9 #include "chrome/common/content_settings_types.h"
10
11 class TabContentsWrapper;
12
13 // Delegate which is used by ContentSettingBubbleModel class.
14 class ContentSettingBubbleModelDelegate {
15 public:
16 // Shows the cookies collected in the tab contents wrapper.
17 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* contents) = 0;
18
19 // Shows the Content Settings page for a given content type.
20 virtual void ShowContentSettingsPage(ContentSettingsType type) = 0;
21
22 protected:
23 virtual ~ContentSettingBubbleModelDelegate() {}
24 };
25
26 #endif // CHROME_BROWSER_UI_CONTENT_SETTINGS_CONTENT_SETTING_BUBBLE_MODEL_DELEG ATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/content_settings/content_setting_bubble_model.cc ('k') | chrome/browser/ui/gtk/location_bar_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698