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

Side by Side Diff: chrome/browser/policy/url_blacklist_manager.h

Issue 12789006: base/prefs: Remove the public/ directory and move the files to //base/prefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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_POLICY_URL_BLACKLIST_MANAGER_H_ 5 #ifndef CHROME_BROWSER_POLICY_URL_BLACKLIST_MANAGER_H_
6 #define CHROME_BROWSER_POLICY_URL_BLACKLIST_MANAGER_H_ 6 #define CHROME_BROWSER_POLICY_URL_BLACKLIST_MANAGER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/callback_forward.h" 12 #include "base/callback_forward.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/hash_tables.h" 14 #include "base/hash_tables.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/weak_ptr.h" 16 #include "base/memory/weak_ptr.h"
17 #include "base/prefs/public/pref_change_registrar.h" 17 #include "base/prefs/pref_change_registrar.h"
18 #include "extensions/common/matcher/url_matcher.h" 18 #include "extensions/common/matcher/url_matcher.h"
19 19
20 class GURL; 20 class GURL;
21 class PrefService; 21 class PrefService;
22 class PrefRegistrySyncable; 22 class PrefRegistrySyncable;
23 23
24 namespace base { 24 namespace base {
25 class ListValue; 25 class ListValue;
26 } 26 }
27 27
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 182
183 // The current blacklist. 183 // The current blacklist.
184 scoped_ptr<URLBlacklist> blacklist_; 184 scoped_ptr<URLBlacklist> blacklist_;
185 185
186 DISALLOW_COPY_AND_ASSIGN(URLBlacklistManager); 186 DISALLOW_COPY_AND_ASSIGN(URLBlacklistManager);
187 }; 187 };
188 188
189 } // namespace policy 189 } // namespace policy
190 190
191 #endif // CHROME_BROWSER_POLICY_URL_BLACKLIST_MANAGER_H_ 191 #endif // CHROME_BROWSER_POLICY_URL_BLACKLIST_MANAGER_H_
OLDNEW
« no previous file with comments | « chrome/browser/policy/cloud/cloud_policy_manager.h ('k') | chrome/browser/prefs/scoped_user_pref_update_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698