| 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_PAGE_INFO_WEBSITE_SETTINGS_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ | 6 #define CHROME_BROWSER_UI_PAGE_INFO_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/page_info/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 "ui/gfx/native_widget_types.h" | 16 #include "ui/gfx/native_widget_types.h" |
| 17 | 17 |
| 18 class Profile; | 18 class Profile; |
| 19 class WebsiteSettings; | 19 class WebsiteSettings; |
| 20 | 20 |
| 21 namespace gfx { | 21 namespace gfx { |
| 22 class Image; | 22 class Image; |
| 23 } | 23 } |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 ChosenObjectInfoList chosen_object_info_list) = 0; | 195 ChosenObjectInfoList chosen_object_info_list) = 0; |
| 196 | 196 |
| 197 // Sets site identity information. | 197 // Sets site identity information. |
| 198 virtual void SetIdentityInfo(const IdentityInfo& identity_info) = 0; | 198 virtual void SetIdentityInfo(const IdentityInfo& identity_info) = 0; |
| 199 }; | 199 }; |
| 200 | 200 |
| 201 typedef WebsiteSettingsUI::CookieInfoList CookieInfoList; | 201 typedef WebsiteSettingsUI::CookieInfoList CookieInfoList; |
| 202 typedef WebsiteSettingsUI::PermissionInfoList PermissionInfoList; | 202 typedef WebsiteSettingsUI::PermissionInfoList PermissionInfoList; |
| 203 typedef WebsiteSettingsUI::ChosenObjectInfoList ChosenObjectInfoList; | 203 typedef WebsiteSettingsUI::ChosenObjectInfoList ChosenObjectInfoList; |
| 204 | 204 |
| 205 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ | 205 #endif // CHROME_BROWSER_UI_PAGE_INFO_WEBSITE_SETTINGS_UI_H_ |
| OLD | NEW |