Chromium Code Reviews| Index: chrome/browser/policy/cloud/user_cloud_policy_invalidator.cc |
| diff --git a/chrome/browser/policy/cloud/user_cloud_policy_invalidator.cc b/chrome/browser/policy/cloud/user_cloud_policy_invalidator.cc |
| index 26e001a4f7ea65fadc12c0716d30186fe7a85c07..cef0967203b7f9e1a3499c94ed3e385b831af4de 100644 |
| --- a/chrome/browser/policy/cloud/user_cloud_policy_invalidator.cc |
| +++ b/chrome/browser/policy/cloud/user_cloud_policy_invalidator.cc |
| @@ -7,7 +7,7 @@ |
| #include "base/bind.h" |
| #include "base/message_loop/message_loop_proxy.h" |
| #include "chrome/browser/chrome_notification_types.h" |
| -#include "chrome/browser/policy/cloud/cloud_policy_core.h" |
| +#include "chrome/browser/invalidation/invalidation_service_factory.h" |
| #include "chrome/browser/policy/cloud/cloud_policy_manager.h" |
| #include "content/public/browser/notification_source.h" |
| @@ -17,14 +17,17 @@ UserCloudPolicyInvalidator::UserCloudPolicyInvalidator( |
| Profile* profile, |
| CloudPolicyManager* policy_manager) |
| : CloudPolicyInvalidator( |
| - policy_manager, |
| - policy_manager->core()->store(), |
| + policy_manager->core(), |
| base::MessageLoopProxy::current()), |
| - profile_(profile), |
| - policy_manager_(policy_manager) { |
| + profile_(profile) { |
| DCHECK(profile); |
| - // Register for notification that profile creation is complete. |
| + // Register for notification that profile creation is complete. The |
| + // invalidator must not be initialized before then because the invalidation |
| + // service cannot be started because it depends on components initialized |
| + // after this object is instantiated. |
| + // TODO(stepco): Investigate if we can update the invalidation service such |
|
Mattias Nissler (ping if slow)
2013/09/05 14:54:04
OK, thanks for the stack trace. It turns out that
Steve Condie
2013/09/06 06:23:05
Thanks for looking into that and finding the exist
|
| + // that it can be used immediately. |
| registrar_.Add(this, |
| chrome::NOTIFICATION_PROFILE_ADDED, |
| content::Source<Profile>(profile)); |
| @@ -38,13 +41,12 @@ void UserCloudPolicyInvalidator::Observe( |
| int type, |
| const content::NotificationSource& source, |
| const content::NotificationDetails& details) { |
| - // Enable invalidations now that profile creation is complete. |
| + // Initialize now that profile creation is complete and the invalidation |
| + // service can safely be initialized. |
| DCHECK(type == chrome::NOTIFICATION_PROFILE_ADDED); |
| - policy_manager_->EnableInvalidations( |
| - base::Bind( |
| - &CloudPolicyInvalidator::InitializeWithProfile, |
| - GetWeakPtr(), |
| - base::Unretained(profile_))); |
| + Initialize(base::Bind( |
| + &invalidation::InvalidationServiceFactory::GetForProfile, |
|
Mattias Nissler (ping if slow)
2013/09/05 14:54:04
I guess you could just call GetForProfile here and
Steve Condie
2013/09/06 06:23:05
Since the invalidation service is initialized when
Mattias Nissler (ping if slow)
2013/09/06 08:51:54
Other consumers (such as the push messaging extens
Steve Condie
2013/09/06 18:01:40
Done.
|
| + base::Unretained(profile_))); |
| } |
| } // namespace policy |