| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_GTK_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_GTK_H_ |
| 6 #define CHROME_BROWSER_UI_GTK_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_GTK_H_ |
| 7 | 7 |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 // WebsiteSettingsUI implementations. | 60 // WebsiteSettingsUI implementations. |
| 61 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) OVERRIDE; | 61 virtual void SetCookieInfo(const CookieInfoList& cookie_info_list) OVERRIDE; |
| 62 virtual void SetPermissionInfo( | 62 virtual void SetPermissionInfo( |
| 63 const PermissionInfoList& permission_info_list) OVERRIDE; | 63 const PermissionInfoList& permission_info_list) OVERRIDE; |
| 64 virtual void SetIdentityInfo(const IdentityInfo& identity_info) OVERRIDE; | 64 virtual void SetIdentityInfo(const IdentityInfo& identity_info) OVERRIDE; |
| 65 virtual void SetFirstVisit(const string16& first_visit) OVERRIDE; | 65 virtual void SetFirstVisit(const string16& first_visit) OVERRIDE; |
| 66 virtual void SetSelectedTab(WebsiteSettingsUI::TabId tab_id) OVERRIDE; | 66 virtual void SetSelectedTab(WebsiteSettingsUI::TabId tab_id) OVERRIDE; |
| 67 | 67 |
| 68 // PermissionSelectorObserver implementations. | 68 // PermissionSelectorObserver implementations. |
| 69 virtual void OnPermissionChanged(PermissionSelector* selector) OVERRIDE; | 69 virtual void OnPermissionChanged(PermissionSelector* selector) OVERRIDE; |
| 70 virtual void OnComboboxShown() OVERRIDE; | |
| 71 | 70 |
| 72 // BubbleDelegateGtk implementation. | 71 // BubbleDelegateGtk implementation. |
| 73 virtual void BubbleClosing(BubbleGtk* bubble, bool closed_by_escape) OVERRIDE; | 72 virtual void BubbleClosing(BubbleGtk* bubble, bool closed_by_escape) OVERRIDE; |
| 74 | 73 |
| 75 // content::NotificationObserver implementation. | 74 // content::NotificationObserver implementation. |
| 76 virtual void Observe(int type, | 75 virtual void Observe(int type, |
| 77 const content::NotificationSource& source, | 76 const content::NotificationSource& source, |
| 78 const content::NotificationDetails& details) OVERRIDE; | 77 const content::NotificationDetails& details) OVERRIDE; |
| 79 | 78 |
| 80 // Layouts the different sections retrieved from the model. | 79 // Layouts the different sections retrieved from the model. |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 // The permission selectors that allow the user to change individual | 160 // The permission selectors that allow the user to change individual |
| 162 // permissions. | 161 // permissions. |
| 163 ScopedVector<PermissionSelector> selectors_; | 162 ScopedVector<PermissionSelector> selectors_; |
| 164 | 163 |
| 165 content::NotificationRegistrar registrar_; | 164 content::NotificationRegistrar registrar_; |
| 166 | 165 |
| 167 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupGtk); | 166 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupGtk); |
| 168 }; | 167 }; |
| 169 | 168 |
| 170 #endif // CHROME_BROWSER_UI_GTK_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_GTK_H_ | 169 #endif // CHROME_BROWSER_UI_GTK_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_GTK_H_ |
| OLD | NEW |