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

Side by Side Diff: chrome/browser/policy/cloud/user_cloud_policy_invalidator.cc

Issue 19733003: Implement cloud policy invalidations using the invalidation service framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/policy/cloud/user_cloud_policy_invalidator.h"
6
7 #include "base/message_loop/message_loop.h"
8 #include "chrome/browser/policy/cloud/cloud_policy_core.h"
9 #include "chrome/browser/policy/cloud/cloud_policy_manager.h"
10
11 namespace policy {
12
13 UserCloudPolicyInvalidator::UserCloudPolicyInvalidator(
14 invalidation::InvalidationService* invalidation_service,
15 CloudPolicyManager* policy_manager) : CloudPolicyInvalidator(
Joao da Silva 2013/07/25 18:03:53 break the ": CloudPolicyInvalidator(" into a newli
Steve Condie 2013/07/26 01:39:25 Done.
16 invalidation_service,
17 policy_manager->core()->store(),
18 base::MessageLoop::current()->message_loop_proxy(),
19 policy_manager) {}
20
21 void UserCloudPolicyInvalidator::Shutdown() {
22 CloudPolicyInvalidator::Shutdown();
23 }
24
25 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698