| 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_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBSITE_SETTINGS_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBSITE_SETTINGS_UI_H_ | 6 #define CHROME_BROWSER_UI_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/website_settings.h" | 13 #include "chrome/browser/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 TabContentsWrapper; | 22 class TabContents; |
| 23 typedef TabContents TabContentsWrapper; |
| 23 class WebsiteSettings; | 24 class WebsiteSettings; |
| 24 | 25 |
| 25 namespace content { | 26 namespace content { |
| 26 struct SSLStatus; | 27 struct SSLStatus; |
| 27 } | 28 } |
| 28 | 29 |
| 29 // The class |WebsiteSettingsUI| specifies the platform independent | 30 // The class |WebsiteSettingsUI| specifies the platform independent |
| 30 // interface of the website settings UI. The website settings UI displays | 31 // interface of the website settings UI. The website settings UI displays |
| 31 // information and controls for site specific data (local stored objects like | 32 // information and controls for site specific data (local stored objects like |
| 32 // cookies), site specific permissions (location, popup, plugin, etc. | 33 // cookies), site specific permissions (location, popup, plugin, etc. |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 }; | 103 }; |
| 103 | 104 |
| 104 class CookieInfoList : public std::vector<WebsiteSettingsUI::CookieInfo> { | 105 class CookieInfoList : public std::vector<WebsiteSettingsUI::CookieInfo> { |
| 105 }; | 106 }; |
| 106 | 107 |
| 107 class PermissionInfoList | 108 class PermissionInfoList |
| 108 : public std::vector<WebsiteSettingsUI::PermissionInfo> { | 109 : public std::vector<WebsiteSettingsUI::PermissionInfo> { |
| 109 }; | 110 }; |
| 110 | 111 |
| 111 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_UI_H_ | 112 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_UI_H_ |
| OLD | NEW |