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

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

Issue 465433002: Separate UMA histograms for user and device policy invalidation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comment. Created 6 years, 4 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/cloud/user_cloud_policy_invalidator.h" 5 #include "chrome/browser/policy/cloud/user_cloud_policy_invalidator.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/message_loop/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "base/time/default_clock.h" 10 #include "base/time/default_clock.h"
11 #include "chrome/browser/chrome_notification_types.h" 11 #include "chrome/browser/chrome_notification_types.h"
12 #include "chrome/browser/invalidation/profile_invalidation_provider_factory.h" 12 #include "chrome/browser/invalidation/profile_invalidation_provider_factory.h"
13 #include "components/invalidation/profile_invalidation_provider.h" 13 #include "components/invalidation/profile_invalidation_provider.h"
14 #include "components/policy/core/common/cloud/cloud_policy_manager.h" 14 #include "components/policy/core/common/cloud/cloud_policy_manager.h"
15 #include "content/public/browser/notification_source.h" 15 #include "content/public/browser/notification_source.h"
16 #include "policy/proto/device_management_backend.pb.h"
16 17
17 namespace policy { 18 namespace policy {
18 19
19 UserCloudPolicyInvalidator::UserCloudPolicyInvalidator( 20 UserCloudPolicyInvalidator::UserCloudPolicyInvalidator(
20 Profile* profile, 21 Profile* profile,
21 CloudPolicyManager* policy_manager) 22 CloudPolicyManager* policy_manager)
22 : CloudPolicyInvalidator( 23 : CloudPolicyInvalidator(
24 #if defined(OS_CHROMEOS)
25 enterprise_management::DeviceRegisterRequest::USER,
26 #elif defined(OS_ANDROID)
27 enterprise_management::DeviceRegisterRequest::ANDROID_BROWSER,
28 #elif defined(OS_IOS)
29 enterprise_management::DeviceRegisterRequest::IOS_BROWSER,
30 #else
31 enterprise_management::DeviceRegisterRequest::BROWSER,
32 #endif
23 policy_manager->core(), 33 policy_manager->core(),
24 base::MessageLoopProxy::current(), 34 base::MessageLoopProxy::current(),
25 scoped_ptr<base::Clock>(new base::DefaultClock())), 35 scoped_ptr<base::Clock>(new base::DefaultClock())),
26 profile_(profile) { 36 profile_(profile) {
27 DCHECK(profile); 37 DCHECK(profile);
28 38
29 // Register for notification that profile creation is complete. The 39 // Register for notification that profile creation is complete. The
30 // invalidator must not be initialized before then because the invalidation 40 // invalidator must not be initialized before then because the invalidation
31 // service cannot be started because it depends on components initialized 41 // service cannot be started because it depends on components initialized
32 // after this object is instantiated. 42 // after this object is instantiated.
(...skipping 16 matching lines...) Expand all
49 // Initialize now that profile creation is complete and the invalidation 59 // Initialize now that profile creation is complete and the invalidation
50 // service can safely be initialized. 60 // service can safely be initialized.
51 DCHECK(type == chrome::NOTIFICATION_PROFILE_ADDED); 61 DCHECK(type == chrome::NOTIFICATION_PROFILE_ADDED);
52 invalidation::ProfileInvalidationProvider* invalidation_provider = 62 invalidation::ProfileInvalidationProvider* invalidation_provider =
53 invalidation::ProfileInvalidationProviderFactory::GetForProfile(profile_); 63 invalidation::ProfileInvalidationProviderFactory::GetForProfile(profile_);
54 if (invalidation_provider) 64 if (invalidation_provider)
55 Initialize(invalidation_provider->GetInvalidationService()); 65 Initialize(invalidation_provider->GetInvalidationService());
56 } 66 }
57 67
58 } // namespace policy 68 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698