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

Side by Side Diff: components/content_settings/core/browser/content_settings_pref_provider.h

Issue 2511973004: components: Cleanup class/struct fwd declarations (Closed)
Patch Set: Rebase on top of current master branch Created 4 years 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 COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_PREF_PROVIDER_ H_ 5 #ifndef COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_PREF_PROVIDER_ H_
6 #define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_PREF_PROVIDER_ H_ 6 #define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_PREF_PROVIDER_ H_
7 7
8 // A content settings provider that takes its settings out of the pref service. 8 // A content settings provider that takes its settings out of the pref service.
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "components/content_settings/core/browser/content_settings_observable_p rovider.h" 15 #include "components/content_settings/core/browser/content_settings_observable_p rovider.h"
16 #include "components/content_settings/core/browser/content_settings_utils.h" 16 #include "components/content_settings/core/browser/content_settings_utils.h"
17 #include "components/prefs/pref_change_registrar.h" 17 #include "components/prefs/pref_change_registrar.h"
18 18
19 class PrefService; 19 class PrefService;
20 20
21 namespace base { 21 namespace base {
22 class Clock; 22 class Clock;
23 class DictionaryValue;
24 } 23 }
25 24
26 namespace user_prefs { 25 namespace user_prefs {
27 class PrefRegistrySyncable; 26 class PrefRegistrySyncable;
28 } 27 }
29 28
30 namespace content_settings { 29 namespace content_settings {
31 30
32 class ContentSettingsPref; 31 class ContentSettingsPref;
33 32
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 content_settings_prefs_; 96 content_settings_prefs_;
98 97
99 base::ThreadChecker thread_checker_; 98 base::ThreadChecker thread_checker_;
100 99
101 DISALLOW_COPY_AND_ASSIGN(PrefProvider); 100 DISALLOW_COPY_AND_ASSIGN(PrefProvider);
102 }; 101 };
103 102
104 } // namespace content_settings 103 } // namespace content_settings
105 104
106 #endif // COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_PREF_PROVID ER_H_ 105 #endif // COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_PREF_PROVID ER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698