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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "chrome/browser/ui/website_settings/website_settings.h" | 13 #include "chrome/browser/ui/website_settings/website_settings.h" |
14 #include "chrome/common/content_settings.h" | 14 #include "chrome/common/content_settings.h" |
15 #include "chrome/common/content_settings_types.h" | 15 #include "chrome/common/content_settings_types.h" |
16 #include "ui/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
17 | 17 |
18 class CookieInfoList; | 18 class CookieInfoList; |
19 class GURL; | 19 class GURL; |
20 class PermissionInfoList; | 20 class PermissionInfoList; |
21 class Profile; | 21 class Profile; |
22 class TabContents; | |
23 class WebsiteSettings; | 22 class WebsiteSettings; |
24 | 23 |
25 namespace content { | 24 namespace content { |
26 struct SSLStatus; | 25 struct SSLStatus; |
27 } | 26 } |
28 | 27 |
29 // The class |WebsiteSettingsUI| specifies the platform independent | 28 // The class |WebsiteSettingsUI| specifies the platform independent |
30 // interface of the website settings UI. The website settings UI displays | 29 // interface of the website settings UI. The website settings UI displays |
31 // information and controls for site specific data (local stored objects like | 30 // information and controls for site specific data (local stored objects like |
32 // cookies), site specific permissions (location, popup, plugin, etc. | 31 // cookies), site specific permissions (location, popup, plugin, etc. |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 }; | 103 }; |
105 | 104 |
106 class CookieInfoList : public std::vector<WebsiteSettingsUI::CookieInfo> { | 105 class CookieInfoList : public std::vector<WebsiteSettingsUI::CookieInfo> { |
107 }; | 106 }; |
108 | 107 |
109 class PermissionInfoList | 108 class PermissionInfoList |
110 : public std::vector<WebsiteSettingsUI::PermissionInfo> { | 109 : public std::vector<WebsiteSettingsUI::PermissionInfo> { |
111 }; | 110 }; |
112 | 111 |
113 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ | 112 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ |
OLD | NEW |