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

Side by Side Diff: chrome/browser/chromeos/policy/device_local_account_policy_provider.cc

Issue 78823004: Move PolicyBundle into components/policy/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase on master Created 7 years, 1 month 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/chromeos/policy/device_local_account_policy_provider.h" 5 #include "chrome/browser/chromeos/policy/device_local_account_policy_provider.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "chrome/browser/chromeos/policy/device_local_account_external_data_mana ger.h" 8 #include "chrome/browser/chromeos/policy/device_local_account_external_data_mana ger.h"
9 #include "chrome/browser/policy/cloud/cloud_policy_core.h" 9 #include "chrome/browser/policy/cloud/cloud_policy_core.h"
10 #include "chrome/browser/policy/cloud/cloud_policy_service.h" 10 #include "chrome/browser/policy/cloud/cloud_policy_service.h"
11 #include "chrome/browser/policy/policy_bundle.h" 11 #include "components/policy/core/common/policy_bundle.h"
12 #include "components/policy/core/common/policy_namespace.h" 12 #include "components/policy/core/common/policy_namespace.h"
13 13
14 namespace policy { 14 namespace policy {
15 15
16 DeviceLocalAccountPolicyProvider::DeviceLocalAccountPolicyProvider( 16 DeviceLocalAccountPolicyProvider::DeviceLocalAccountPolicyProvider(
17 const std::string& user_id, 17 const std::string& user_id,
18 DeviceLocalAccountPolicyService* service) 18 DeviceLocalAccountPolicyService* service)
19 : user_id_(user_id), 19 : user_id_(user_id),
20 service_(service), 20 service_(service),
21 store_initialized_(false), 21 store_initialized_(false),
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 } else { 84 } else {
85 // Keep existing policy, but do send an update. 85 // Keep existing policy, but do send an update.
86 waiting_for_policy_refresh_ = false; 86 waiting_for_policy_refresh_ = false;
87 weak_factory_.InvalidateWeakPtrs(); 87 weak_factory_.InvalidateWeakPtrs();
88 bundle->CopyFrom(policies()); 88 bundle->CopyFrom(policies());
89 } 89 }
90 UpdatePolicy(bundle.Pass()); 90 UpdatePolicy(bundle.Pass());
91 } 91 }
92 92
93 } // namespace policy 93 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698