Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: chrome/browser/ui/website_settings/website_settings_ui.h

Issue 541813002: Componentize chrome/common/content_settings files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 #include "chrome/browser/ui/website_settings/website_settings.h" 12 #include "chrome/browser/ui/website_settings/website_settings.h"
13 #include "chrome/common/content_settings.h" 13 #include "components/content_settings/core/common/content_settings.h"
14 #include "components/content_settings/core/common/content_settings_types.h" 14 #include "components/content_settings/core/common/content_settings_types.h"
15 #include "content/public/common/signed_certificate_timestamp_id_and_status.h" 15 #include "content/public/common/signed_certificate_timestamp_id_and_status.h"
16 #include "ui/gfx/native_widget_types.h" 16 #include "ui/gfx/native_widget_types.h"
17 17
18 18
19 class GURL; 19 class GURL;
20 class Profile; 20 class Profile;
21 class WebsiteSettings; 21 class WebsiteSettings;
22 namespace content { 22 namespace content {
23 struct SSLStatus; 23 struct SSLStatus;
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 virtual void SetFirstVisit(const base::string16& first_visit) = 0; 170 virtual void SetFirstVisit(const base::string16& first_visit) = 0;
171 171
172 // Selects the tab with the given |tab_id|. 172 // Selects the tab with the given |tab_id|.
173 virtual void SetSelectedTab(TabId tab_id) = 0; 173 virtual void SetSelectedTab(TabId tab_id) = 0;
174 }; 174 };
175 175
176 typedef WebsiteSettingsUI::CookieInfoList CookieInfoList; 176 typedef WebsiteSettingsUI::CookieInfoList CookieInfoList;
177 typedef WebsiteSettingsUI::PermissionInfoList PermissionInfoList; 177 typedef WebsiteSettingsUI::PermissionInfoList PermissionInfoList;
178 178
179 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_ 179 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_UI_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698