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

Side by Side Diff: chrome/browser/policy/configuration_policy_provider.cc

Issue 78763002: Move PolicyMap and its dependencies to components/policy/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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 #include "chrome/browser/policy/configuration_policy_provider.h" 5 #include "chrome/browser/policy/configuration_policy_provider.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "chrome/browser/policy/external_data_fetcher.h" 8 #include "components/policy/core/common/external_data_fetcher.h"
9 #include "chrome/browser/policy/policy_map.h" 9 #include "components/policy/core/common/policy_map.h"
10 #include "policy/policy_constants.h" 10 #include "policy/policy_constants.h"
11 11
12 namespace policy { 12 namespace policy {
13 13
14 namespace { 14 namespace {
15 15
16 const char* kProxyPolicies[] = { 16 const char* kProxyPolicies[] = {
17 key::kProxyMode, 17 key::kProxyMode,
18 key::kProxyServerMode, 18 key::kProxyServerMode,
19 key::kProxyServer, 19 key::kProxyServer,
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 void ConfigurationPolicyProvider::RemoveObserver(Observer* observer) { 123 void ConfigurationPolicyProvider::RemoveObserver(Observer* observer) {
124 observer_list_.RemoveObserver(observer); 124 observer_list_.RemoveObserver(observer);
125 } 125 }
126 126
127 void ConfigurationPolicyProvider::OnSchemaRegistryUpdated( 127 void ConfigurationPolicyProvider::OnSchemaRegistryUpdated(
128 bool has_new_schemas) {} 128 bool has_new_schemas) {}
129 129
130 void ConfigurationPolicyProvider::OnSchemaRegistryReady() {} 130 void ConfigurationPolicyProvider::OnSchemaRegistryReady() {}
131 131
132 } // namespace policy 132 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698