| 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_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "chrome/browser/ui/website_settings/website_settings.h" | 13 #include "chrome/browser/ui/website_settings/website_settings.h" |
| 14 #include "components/content_settings/core/common/content_settings.h" | 14 #include "components/content_settings/core/common/content_settings.h" |
| 15 #include "components/content_settings/core/common/content_settings_types.h" | 15 #include "components/content_settings/core/common/content_settings_types.h" |
| 16 #include "content/public/browser/permission_type.h" | 16 #include "content/public/browser/permission_type.h" |
| 17 #include "ui/gfx/native_widget_types.h" | 17 #include "ui/gfx/native_widget_types.h" |
| 18 | 18 |
| 19 class GURL; | |
| 20 class Profile; | 19 class Profile; |
| 21 class WebsiteSettings; | 20 class WebsiteSettings; |
| 22 | 21 |
| 23 namespace base { | |
| 24 class Value; | |
| 25 }; | |
| 26 | |
| 27 namespace gfx { | 22 namespace gfx { |
| 28 class Image; | 23 class Image; |
| 29 } | 24 } |
| 30 | 25 |
| 31 namespace net { | 26 namespace net { |
| 32 class X509Certificate; | 27 class X509Certificate; |
| 33 } | 28 } |
| 34 | 29 |
| 35 // The class |WebsiteSettingsUI| specifies the platform independent | 30 // The class |WebsiteSettingsUI| specifies the platform independent |
| 36 // interface of the website settings UI. The website settings UI displays | 31 // interface of the website settings UI. The website settings UI displays |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 199 |
| 205 // Selects the tab with the given |tab_id|. | 200 // Selects the tab with the given |tab_id|. |
| 206 virtual void SetSelectedTab(TabId tab_id) = 0; | 201 virtual void SetSelectedTab(TabId tab_id) = 0; |
| 207 }; | 202 }; |
| 208 | 203 |
| 209 typedef WebsiteSettingsUI::CookieInfoList CookieInfoList; | 204 typedef WebsiteSettingsUI::CookieInfoList CookieInfoList; |
| 210 typedef WebsiteSettingsUI::PermissionInfoList PermissionInfoList; | 205 typedef WebsiteSettingsUI::PermissionInfoList PermissionInfoList; |
| 211 typedef WebsiteSettingsUI::ChosenObjectInfoList ChosenObjectInfoList; | 206 typedef WebsiteSettingsUI::ChosenObjectInfoList ChosenObjectInfoList; |
| 212 | 207 |
| 213 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ | 208 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ |
| OLD | NEW |