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

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

Issue 10456017: Add WebsiteSettingsUI for Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 8 years, 6 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 | Annotate | Revision Log
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_H_ 5 #ifndef CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_
6 #define CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_ 6 #define CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/string16.h" 9 #include "base/string16.h"
10 #include "base/time.h" 10 #include "base/time.h"
11 #include "chrome/browser/cancelable_request.h" 11 #include "chrome/browser/cancelable_request.h"
12 #include "chrome/browser/content_settings/tab_specific_content_settings.h" 12 #include "chrome/browser/content_settings/tab_specific_content_settings.h"
13 #include "chrome/browser/history/history.h" 13 #include "chrome/browser/history/history.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 "googleurl/src/gurl.h" 16 #include "googleurl/src/gurl.h"
17 #include "ui/gfx/native_widget_types.h" 17 #include "ui/gfx/native_widget_types.h"
18 #if defined(TOOLKIT_VIEWS)
19 #include "ui/views/view.h"
20 #endif
Finnur 2012/06/06 11:55:50 Is this needed still?
markusheintz_ 2012/06/06 13:47:03 No. Removed
18 21
19 namespace content { 22 namespace content {
20 class CertStore; 23 class CertStore;
21 struct SSLStatus; 24 struct SSLStatus;
22 } 25 }
23 26
24 class HostContentSettingsMap; 27 class HostContentSettingsMap;
25 class Profile; 28 class Profile;
26 class TabContentsWrapper; 29 class TabContentsWrapper;
27 class WebsiteSettingsUI; 30 class WebsiteSettingsUI;
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 // content settings (aka. site permissions). 183 // content settings (aka. site permissions).
181 HostContentSettingsMap* content_settings_; 184 HostContentSettingsMap* content_settings_;
182 185
183 // Used to request the number of page visits. 186 // Used to request the number of page visits.
184 CancelableRequestConsumer visit_count_request_consumer_; 187 CancelableRequestConsumer visit_count_request_consumer_;
185 188
186 DISALLOW_COPY_AND_ASSIGN(WebsiteSettings); 189 DISALLOW_COPY_AND_ASSIGN(WebsiteSettings);
187 }; 190 };
188 191
189 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_ 192 #endif // CHROME_BROWSER_UI_WEBSITE_SETTINGS_WEBSITE_SETTINGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698