Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/services/gcm/push_messaging_service_impl.h" | 5 #include "chrome/browser/push_messaging/push_messaging_service_impl.h" |
| 6 | 6 |
| 7 #include <bitset> | 7 #include <bitset> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
| 14 #include "base/prefs/pref_service.h" | 14 #include "base/prefs/pref_service.h" |
| 15 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
| 16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
| 17 #include "chrome/browser/browser_process.h" | 17 #include "chrome/browser/browser_process.h" |
| 18 #include "chrome/browser/notifications/notification_ui_manager.h" | 18 #include "chrome/browser/notifications/notification_ui_manager.h" |
| 19 #include "chrome/browser/notifications/platform_notification_service_impl.h" | 19 #include "chrome/browser/notifications/platform_notification_service_impl.h" |
| 20 #include "chrome/browser/profiles/profile.h" | 20 #include "chrome/browser/profiles/profile.h" |
| 21 #include "chrome/browser/push_messaging/push_messaging_application_id.h" | |
| 22 #include "chrome/browser/push_messaging/push_messaging_constants.h" | |
| 23 #include "chrome/browser/push_messaging/push_messaging_permission_context.h" | |
| 24 #include "chrome/browser/push_messaging/push_messaging_permission_context_factor y.h" | |
| 25 #include "chrome/browser/push_messaging/push_messaging_service_factory.h" | |
| 21 #include "chrome/browser/services/gcm/gcm_profile_service.h" | 26 #include "chrome/browser/services/gcm/gcm_profile_service.h" |
| 22 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h" | 27 #include "chrome/browser/services/gcm/gcm_profile_service_factory.h" |
| 23 #include "chrome/browser/services/gcm/push_messaging_application_id.h" | |
| 24 #include "chrome/browser/services/gcm/push_messaging_constants.h" | |
| 25 #include "chrome/browser/services/gcm/push_messaging_permission_context.h" | |
| 26 #include "chrome/browser/services/gcm/push_messaging_permission_context_factory. h" | |
| 27 #include "chrome/common/chrome_switches.h" | 28 #include "chrome/common/chrome_switches.h" |
| 28 #include "chrome/common/pref_names.h" | 29 #include "chrome/common/pref_names.h" |
| 29 #include "chrome/grit/generated_resources.h" | 30 #include "chrome/grit/generated_resources.h" |
| 30 #include "components/content_settings/core/browser/host_content_settings_map.h" | 31 #include "components/content_settings/core/browser/host_content_settings_map.h" |
| 31 #include "components/content_settings/core/common/permission_request_id.h" | 32 #include "components/content_settings/core/common/permission_request_id.h" |
| 32 #include "components/gcm_driver/gcm_driver.h" | 33 #include "components/gcm_driver/gcm_driver.h" |
| 33 #include "components/pref_registry/pref_registry_syncable.h" | 34 #include "components/pref_registry/pref_registry_syncable.h" |
| 34 #include "content/public/browser/browser_context.h" | 35 #include "content/public/browser/browser_context.h" |
| 35 #include "content/public/browser/browser_thread.h" | 36 #include "content/public/browser/browser_thread.h" |
| 36 #include "content/public/browser/render_frame_host.h" | 37 #include "content/public/browser/render_frame_host.h" |
| 37 #include "content/public/browser/service_worker_context.h" | 38 #include "content/public/browser/service_worker_context.h" |
| 38 #include "content/public/browser/storage_partition.h" | 39 #include "content/public/browser/storage_partition.h" |
| 39 #include "content/public/browser/web_contents.h" | 40 #include "content/public/browser/web_contents.h" |
| 40 #include "content/public/common/child_process_host.h" | 41 #include "content/public/common/child_process_host.h" |
| 41 #include "content/public/common/content_switches.h" | 42 #include "content/public/common/content_switches.h" |
| 42 #include "content/public/common/platform_notification_data.h" | 43 #include "content/public/common/platform_notification_data.h" |
| 43 #include "content/public/common/push_messaging_status.h" | 44 #include "content/public/common/push_messaging_status.h" |
| 44 #include "third_party/skia/include/core/SkBitmap.h" | 45 #include "third_party/skia/include/core/SkBitmap.h" |
| 45 #include "ui/base/l10n/l10n_util.h" | 46 #include "ui/base/l10n/l10n_util.h" |
| 46 | 47 |
| 47 #if defined(OS_ANDROID) | 48 #if defined(OS_ANDROID) |
| 48 #include "chrome/browser/ui/android/tab_model/tab_model.h" | 49 #include "chrome/browser/ui/android/tab_model/tab_model.h" |
| 49 #include "chrome/browser/ui/android/tab_model/tab_model_list.h" | 50 #include "chrome/browser/ui/android/tab_model/tab_model_list.h" |
| 50 #else | 51 #else |
| 51 #include "chrome/browser/ui/browser.h" | 52 #include "chrome/browser/ui/browser.h" |
| 52 #include "chrome/browser/ui/browser_iterator.h" | 53 #include "chrome/browser/ui/browser_iterator.h" |
| 53 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 54 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 54 #endif | 55 #endif |
| 55 | 56 |
| 56 namespace gcm { | |
| 57 | |
| 58 namespace { | 57 namespace { |
| 59 const int kMaxRegistrations = 1000000; | 58 const int kMaxRegistrations = 1000000; |
| 60 | 59 |
| 61 void RecordDeliveryStatus(content::PushDeliveryStatus status) { | 60 void RecordDeliveryStatus(content::PushDeliveryStatus status) { |
| 62 UMA_HISTOGRAM_ENUMERATION("PushMessaging.DeliveryStatus", | 61 UMA_HISTOGRAM_ENUMERATION("PushMessaging.DeliveryStatus", |
| 63 status, | 62 status, |
| 64 content::PUSH_DELIVERY_STATUS_LAST + 1); | 63 content::PUSH_DELIVERY_STATUS_LAST + 1); |
| 65 } | 64 } |
| 66 | 65 |
| 67 void RecordUserVisibleStatus(content::PushUserVisibleStatus status) { | 66 void RecordUserVisibleStatus(content::PushUserVisibleStatus status) { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 105 // TODO(johnme): If push becomes enabled in incognito (and this still uses a | 104 // TODO(johnme): If push becomes enabled in incognito (and this still uses a |
| 106 // pref), be careful that this pref is read from the right profile, as prefs | 105 // pref), be careful that this pref is read from the right profile, as prefs |
| 107 // defined in a regular profile are visible in the corresponding incognito | 106 // defined in a regular profile are visible in the corresponding incognito |
| 108 // profile unless overridden. | 107 // profile unless overridden. |
| 109 // TODO(johnme): Make sure this pref doesn't get out of sync after crashes. | 108 // TODO(johnme): Make sure this pref doesn't get out of sync after crashes. |
| 110 int count = profile->GetPrefs()->GetInteger( | 109 int count = profile->GetPrefs()->GetInteger( |
| 111 prefs::kPushMessagingRegistrationCount); | 110 prefs::kPushMessagingRegistrationCount); |
| 112 if (count <= 0) | 111 if (count <= 0) |
| 113 return; | 112 return; |
| 114 | 113 |
| 115 // Create the GCMProfileService, and hence instantiate this class. | |
| 116 GCMProfileService* gcm_service = | |
| 117 GCMProfileServiceFactory::GetForProfile(profile); | |
| 118 PushMessagingServiceImpl* push_service = | 114 PushMessagingServiceImpl* push_service = |
| 119 static_cast<PushMessagingServiceImpl*>( | 115 static_cast<PushMessagingServiceImpl*>( |
| 120 gcm_service->push_messaging_service()); | 116 PushMessagingServiceFactory::GetForProfile(profile)); |
| 121 | |
| 122 push_service->IncreasePushRegistrationCount(count, false /* is_pending */); | 117 push_service->IncreasePushRegistrationCount(count, false /* is_pending */); |
| 123 } | 118 } |
| 124 | 119 |
| 125 PushMessagingServiceImpl::PushMessagingServiceImpl( | 120 PushMessagingServiceImpl::PushMessagingServiceImpl(Profile* profile) |
| 126 GCMProfileService* gcm_profile_service, | 121 : gcm_profile_service_( |
| 127 Profile* profile) | 122 gcm::GCMProfileServiceFactory::GetForProfile(profile)), |
| 128 : gcm_profile_service_(gcm_profile_service), | |
| 129 profile_(profile), | 123 profile_(profile), |
| 130 push_registration_count_(0), | 124 push_registration_count_(0), |
| 131 pending_push_registration_count_(0), | 125 pending_push_registration_count_(0), |
| 132 weak_factory_(this) { | 126 weak_factory_(this) { |
| 133 // In some tests, we might end up with |profile_| being null at this point. | 127 // In some tests, we might end up with |profile_| being null at this point. |
| 134 // When that is the case |profile_| will be set in SetProfileForTesting(), at | 128 // When that is the case |profile_| will be set in SetProfileForTesting(), at |
| 135 // which point the service will start to observe HostContentSettingsMap. | 129 // which point the service will start to observe HostContentSettingsMap. |
| 136 if (profile_) | 130 if (profile_) |
| 137 profile_->GetHostContentSettingsMap()->AddObserver(this); | 131 profile_->GetHostContentSettingsMap()->AddObserver(this); |
| 138 } | 132 } |
| 139 | 133 |
| 140 PushMessagingServiceImpl::~PushMessagingServiceImpl() { | 134 PushMessagingServiceImpl::~PushMessagingServiceImpl() { |
| 141 // TODO(johnme): If it's possible for this to be destroyed before GCMDriver, | |
| 142 // then we should call RemoveAppHandler. | |
| 143 profile_->GetHostContentSettingsMap()->RemoveObserver(this); | 135 profile_->GetHostContentSettingsMap()->RemoveObserver(this); |
| 144 } | 136 } |
| 145 | 137 |
| 146 void PushMessagingServiceImpl::IncreasePushRegistrationCount(int add, | 138 void PushMessagingServiceImpl::IncreasePushRegistrationCount(int add, |
| 147 bool is_pending) { | 139 bool is_pending) { |
| 148 DCHECK(add > 0); | 140 DCHECK(add > 0); |
| 149 if (push_registration_count_ + pending_push_registration_count_ == 0) { | 141 if (push_registration_count_ + pending_push_registration_count_ == 0) { |
| 150 gcm_profile_service_->driver()->AddAppHandler( | 142 gcm_driver()->AddAppHandler(kPushMessagingApplicationIdPrefix, this); |
| 151 kPushMessagingApplicationIdPrefix, this); | |
| 152 } | 143 } |
| 153 if (is_pending) { | 144 if (is_pending) { |
| 154 pending_push_registration_count_ += add; | 145 pending_push_registration_count_ += add; |
| 155 } else { | 146 } else { |
| 156 push_registration_count_ += add; | 147 push_registration_count_ += add; |
| 157 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount, | 148 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount, |
| 158 push_registration_count_); | 149 push_registration_count_); |
| 159 } | 150 } |
| 160 } | 151 } |
| 161 | 152 |
| 162 void PushMessagingServiceImpl::DecreasePushRegistrationCount(int subtract, | 153 void PushMessagingServiceImpl::DecreasePushRegistrationCount(int subtract, |
| 163 bool was_pending) { | 154 bool was_pending) { |
| 164 DCHECK(subtract > 0); | 155 DCHECK(subtract > 0); |
| 165 if (was_pending) { | 156 if (was_pending) { |
| 166 pending_push_registration_count_ -= subtract; | 157 pending_push_registration_count_ -= subtract; |
| 167 DCHECK(pending_push_registration_count_ >= 0); | 158 DCHECK(pending_push_registration_count_ >= 0); |
| 168 } else { | 159 } else { |
| 169 push_registration_count_ -= subtract; | 160 push_registration_count_ -= subtract; |
| 170 DCHECK(push_registration_count_ >= 0); | 161 DCHECK(push_registration_count_ >= 0); |
| 171 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount, | 162 profile_->GetPrefs()->SetInteger(prefs::kPushMessagingRegistrationCount, |
| 172 push_registration_count_); | 163 push_registration_count_); |
| 173 } | 164 } |
| 174 if (push_registration_count_ + pending_push_registration_count_ == 0) { | 165 if (push_registration_count_ + pending_push_registration_count_ == 0) { |
| 175 gcm_profile_service_->driver()->RemoveAppHandler( | 166 gcm_driver()->RemoveAppHandler(kPushMessagingApplicationIdPrefix); |
| 176 kPushMessagingApplicationIdPrefix); | |
| 177 } | 167 } |
| 178 } | 168 } |
| 179 | 169 |
| 180 bool PushMessagingServiceImpl::CanHandle(const std::string& app_id) const { | 170 bool PushMessagingServiceImpl::CanHandle(const std::string& app_id) const { |
| 181 return PushMessagingApplicationId::Get(profile_, app_id).IsValid(); | 171 return PushMessagingApplicationId::Get(profile_, app_id).IsValid(); |
| 182 } | 172 } |
| 183 | 173 |
| 184 void PushMessagingServiceImpl::ShutdownHandler() { | 174 void PushMessagingServiceImpl::ShutdownHandler() { |
| 185 // TODO(johnme): Do any necessary cleanup. | 175 // Shutdown() should come before and it removes us from the list of app |
| 176 // handlers of gcm::GCMDriver so this shouldn't ever been called. | |
| 177 NOTREACHED(); | |
| 186 } | 178 } |
| 187 | 179 |
| 188 // OnMessage methods ----------------------------------------------------------- | 180 // OnMessage methods ----------------------------------------------------------- |
| 189 | 181 |
| 190 void PushMessagingServiceImpl::OnMessage( | 182 void PushMessagingServiceImpl::OnMessage( |
| 191 const std::string& app_id, | 183 const std::string& app_id, |
| 192 const GCMClient::IncomingMessage& message) { | 184 const gcm::GCMClient::IncomingMessage& message) { |
| 193 PushMessagingApplicationId application_id = | 185 PushMessagingApplicationId application_id = |
| 194 PushMessagingApplicationId::Get(profile_, app_id); | 186 PushMessagingApplicationId::Get(profile_, app_id); |
| 195 // Drop message and unregister if app id was unknown (maybe recently deleted). | 187 // Drop message and unregister if app id was unknown (maybe recently deleted). |
| 196 if (!application_id.IsValid()) { | 188 if (!application_id.IsValid()) { |
| 197 DeliverMessageCallback(app_id, GURL::EmptyGURL(), -1, message, | 189 DeliverMessageCallback(app_id, GURL::EmptyGURL(), -1, message, |
| 198 content::PUSH_DELIVERY_STATUS_UNKNOWN_APP_ID); | 190 content::PUSH_DELIVERY_STATUS_UNKNOWN_APP_ID); |
| 199 return; | 191 return; |
| 200 } | 192 } |
| 201 // Drop message and unregister if |origin| has lost push permission. | 193 // Drop message and unregister if |origin| has lost push permission. |
| 202 if (!HasPermission(application_id.origin())) { | 194 if (!HasPermission(application_id.origin())) { |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 219 // "data": "BAZ", | 211 // "data": "BAZ", |
| 220 // }, | 212 // }, |
| 221 // "delay_while_idle": true, | 213 // "delay_while_idle": true, |
| 222 // } | 214 // } |
| 223 // TODO(johnme): Make sure this is clearly documented for developers. | 215 // TODO(johnme): Make sure this is clearly documented for developers. |
| 224 std::string data; | 216 std::string data; |
| 225 // TODO(peter): Message payloads are disabled pending mandatory encryption. | 217 // TODO(peter): Message payloads are disabled pending mandatory encryption. |
| 226 // https://crbug.com/449184 | 218 // https://crbug.com/449184 |
| 227 if (base::CommandLine::ForCurrentProcess()->HasSwitch( | 219 if (base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 228 switches::kEnablePushMessagePayload)) { | 220 switches::kEnablePushMessagePayload)) { |
| 229 GCMClient::MessageData::const_iterator it = message.data.find("data"); | 221 gcm::GCMClient::MessageData::const_iterator it = message.data.find("data"); |
| 230 if (it != message.data.end()) | 222 if (it != message.data.end()) |
| 231 data = it->second; | 223 data = it->second; |
| 232 } | 224 } |
| 233 | 225 |
| 234 content::BrowserContext::DeliverPushMessage( | 226 content::BrowserContext::DeliverPushMessage( |
| 235 profile_, | 227 profile_, |
| 236 application_id.origin(), | 228 application_id.origin(), |
| 237 application_id.service_worker_registration_id(), | 229 application_id.service_worker_registration_id(), |
| 238 data, | 230 data, |
| 239 base::Bind(&PushMessagingServiceImpl::DeliverMessageCallback, | 231 base::Bind(&PushMessagingServiceImpl::DeliverMessageCallback, |
| 240 weak_factory_.GetWeakPtr(), | 232 weak_factory_.GetWeakPtr(), |
| 241 application_id.app_id_guid(), application_id.origin(), | 233 application_id.app_id_guid(), application_id.origin(), |
| 242 application_id.service_worker_registration_id(), message)); | 234 application_id.service_worker_registration_id(), message)); |
| 243 } | 235 } |
| 244 | 236 |
| 245 void PushMessagingServiceImpl::DeliverMessageCallback( | 237 void PushMessagingServiceImpl::DeliverMessageCallback( |
| 246 const std::string& app_id_guid, | 238 const std::string& app_id_guid, |
| 247 const GURL& requesting_origin, | 239 const GURL& requesting_origin, |
| 248 int64 service_worker_registration_id, | 240 int64 service_worker_registration_id, |
| 249 const GCMClient::IncomingMessage& message, | 241 const gcm::GCMClient::IncomingMessage& message, |
| 250 content::PushDeliveryStatus status) { | 242 content::PushDeliveryStatus status) { |
| 251 // TODO(mvanouwerkerk): Show a warning in the developer console of the | 243 // TODO(mvanouwerkerk): Show a warning in the developer console of the |
| 252 // Service Worker corresponding to app_id (and/or on an internals page). | 244 // Service Worker corresponding to app_id (and/or on an internals page). |
| 253 // TODO(mvanouwerkerk): Is there a way to recover from failure? | 245 // TODO(mvanouwerkerk): Is there a way to recover from failure? |
| 254 switch (status) { | 246 switch (status) { |
| 255 // Call RequireUserVisibleUX if the message was delivered to the Service | 247 // Call RequireUserVisibleUX if the message was delivered to the Service |
| 256 // Worker JS, even if the website's event handler failed (to prevent sites | 248 // Worker JS, even if the website's event handler failed (to prevent sites |
| 257 // deliberately failing in order to avoid having to show notifications). | 249 // deliberately failing in order to avoid having to show notifications). |
| 258 case content::PUSH_DELIVERY_STATUS_SUCCESS: | 250 case content::PUSH_DELIVERY_STATUS_SUCCESS: |
| 259 case content::PUSH_DELIVERY_STATUS_EVENT_WAITUNTIL_REJECTED: | 251 case content::PUSH_DELIVERY_STATUS_EVENT_WAITUNTIL_REJECTED: |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 417 PlatformNotificationServiceImpl::GetInstance(); | 409 PlatformNotificationServiceImpl::GetInstance(); |
| 418 notification_service->DisplayPersistentNotification( | 410 notification_service->DisplayPersistentNotification( |
| 419 profile_, | 411 profile_, |
| 420 service_worker_registration_id, | 412 service_worker_registration_id, |
| 421 requesting_origin, | 413 requesting_origin, |
| 422 SkBitmap() /* icon */, | 414 SkBitmap() /* icon */, |
| 423 notification_data); | 415 notification_data); |
| 424 } | 416 } |
| 425 } | 417 } |
| 426 | 418 |
| 427 // Other GCMAppHandler methods ------------------------------------------------- | 419 // Other gcm::GCMAppHandler methods ------------------------------------------- |
| 428 | 420 |
| 429 void PushMessagingServiceImpl::OnMessagesDeleted(const std::string& app_id) { | 421 void PushMessagingServiceImpl::OnMessagesDeleted(const std::string& app_id) { |
| 430 // TODO(mvanouwerkerk): Fire push error event on the Service Worker | 422 // TODO(mvanouwerkerk): Fire push error event on the Service Worker |
| 431 // corresponding to app_id. | 423 // corresponding to app_id. |
| 432 } | 424 } |
| 433 | 425 |
| 434 void PushMessagingServiceImpl::OnSendError( | 426 void PushMessagingServiceImpl::OnSendError( |
| 435 const std::string& app_id, | 427 const std::string& app_id, |
| 436 const GCMClient::SendErrorDetails& send_error_details) { | 428 const gcm::GCMClient::SendErrorDetails& send_error_details) { |
| 437 NOTREACHED() << "The Push API shouldn't have sent messages upstream"; | 429 NOTREACHED() << "The Push API shouldn't have sent messages upstream"; |
| 438 } | 430 } |
| 439 | 431 |
| 440 void PushMessagingServiceImpl::OnSendAcknowledged( | 432 void PushMessagingServiceImpl::OnSendAcknowledged( |
| 441 const std::string& app_id, | 433 const std::string& app_id, |
| 442 const std::string& message_id) { | 434 const std::string& message_id) { |
| 443 NOTREACHED() << "The Push API shouldn't have sent messages upstream"; | 435 NOTREACHED() << "The Push API shouldn't have sent messages upstream"; |
| 444 } | 436 } |
| 445 | 437 |
| 446 // GetPushEndpoint method ------------------------------------------------------ | 438 // GetPushEndpoint method ------------------------------------------------------ |
| 447 | 439 |
| 448 GURL PushMessagingServiceImpl::GetPushEndpoint() { | 440 GURL PushMessagingServiceImpl::GetPushEndpoint() { |
| 449 return GURL(std::string(kPushMessagingEndpoint)); | 441 return GURL(std::string(kPushMessagingEndpoint)); |
| 450 } | 442 } |
| 451 | 443 |
| 452 // Register and GetPermissionStatus methods ------------------------------------ | 444 // Register and GetPermissionStatus methods ------------------------------------ |
| 453 | 445 |
| 454 void PushMessagingServiceImpl::RegisterFromDocument( | 446 void PushMessagingServiceImpl::RegisterFromDocument( |
| 455 const GURL& requesting_origin, | 447 const GURL& requesting_origin, |
| 456 int64 service_worker_registration_id, | 448 int64 service_worker_registration_id, |
| 457 const std::string& sender_id, | 449 const std::string& sender_id, |
| 458 int renderer_id, | 450 int renderer_id, |
| 459 int render_frame_id, | 451 int render_frame_id, |
| 460 bool user_visible_only, | 452 bool user_visible_only, |
| 461 const content::PushMessagingService::RegisterCallback& callback) { | 453 const content::PushMessagingService::RegisterCallback& callback) { |
| 462 if (!gcm_profile_service_->driver()) { | |
| 463 NOTREACHED() << "There is no GCMDriver. Has GCMProfileService shut down?"; | |
| 464 return; | |
| 465 } | |
| 466 | |
| 467 PushMessagingApplicationId application_id = | 454 PushMessagingApplicationId application_id = |
| 468 PushMessagingApplicationId::Generate(requesting_origin, | 455 PushMessagingApplicationId::Generate(requesting_origin, |
| 469 service_worker_registration_id); | 456 service_worker_registration_id); |
| 470 DCHECK(application_id.IsValid()); | 457 DCHECK(application_id.IsValid()); |
| 471 | 458 |
| 472 if (push_registration_count_ + pending_push_registration_count_ | 459 if (push_registration_count_ + pending_push_registration_count_ |
| 473 >= kMaxRegistrations) { | 460 >= kMaxRegistrations) { |
| 474 RegisterEnd(callback, | 461 RegisterEnd(callback, |
| 475 std::string(), | 462 std::string(), |
| 476 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED); | 463 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED); |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 487 if (!web_contents) | 474 if (!web_contents) |
| 488 return; | 475 return; |
| 489 | 476 |
| 490 // TODO(miguelg) need to send this over IPC when bubble support is | 477 // TODO(miguelg) need to send this over IPC when bubble support is |
| 491 // implemented. | 478 // implemented. |
| 492 int bridge_id = -1; | 479 int bridge_id = -1; |
| 493 | 480 |
| 494 const PermissionRequestID id( | 481 const PermissionRequestID id( |
| 495 renderer_id, web_contents->GetRoutingID(), bridge_id, GURL()); | 482 renderer_id, web_contents->GetRoutingID(), bridge_id, GURL()); |
| 496 | 483 |
| 497 gcm::PushMessagingPermissionContext* permission_context = | 484 PushMessagingPermissionContext* permission_context = |
| 498 gcm::PushMessagingPermissionContextFactory::GetForProfile(profile_); | 485 PushMessagingPermissionContextFactory::GetForProfile(profile_); |
| 499 | 486 |
| 500 if (permission_context == NULL || !user_visible_only) { | 487 if (permission_context == NULL || !user_visible_only) { |
| 501 RegisterEnd(callback, | 488 RegisterEnd(callback, |
| 502 std::string(), | 489 std::string(), |
| 503 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); | 490 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); |
| 504 return; | 491 return; |
| 505 } | 492 } |
| 506 | 493 |
| 507 // TODO(miguelg): Consider the value of |user_visible_only| when making | 494 // TODO(miguelg): Consider the value of |user_visible_only| when making |
| 508 // the permission request. | 495 // the permission request. |
| 509 // TODO(mlamouri): Move requesting Push permission over to using Mojo, and | 496 // TODO(mlamouri): Move requesting Push permission over to using Mojo, and |
| 510 // re-introduce the ability of |user_gesture| when bubbles require this. | 497 // re-introduce the ability of |user_gesture| when bubbles require this. |
| 511 // https://crbug.com/423770. | 498 // https://crbug.com/423770. |
| 512 permission_context->RequestPermission( | 499 permission_context->RequestPermission( |
| 513 web_contents, id, requesting_origin, true /* user_gesture */, | 500 web_contents, id, requesting_origin, true /* user_gesture */, |
| 514 base::Bind(&PushMessagingServiceImpl::DidRequestPermission, | 501 base::Bind(&PushMessagingServiceImpl::DidRequestPermission, |
| 515 weak_factory_.GetWeakPtr(), application_id, sender_id, | 502 weak_factory_.GetWeakPtr(), application_id, sender_id, |
| 516 callback)); | 503 callback)); |
| 517 } | 504 } |
| 518 | 505 |
| 519 void PushMessagingServiceImpl::RegisterFromWorker( | 506 void PushMessagingServiceImpl::RegisterFromWorker( |
| 520 const GURL& requesting_origin, | 507 const GURL& requesting_origin, |
| 521 int64 service_worker_registration_id, | 508 int64 service_worker_registration_id, |
| 522 const std::string& sender_id, | 509 const std::string& sender_id, |
| 523 const content::PushMessagingService::RegisterCallback& register_callback) { | 510 const content::PushMessagingService::RegisterCallback& register_callback) { |
| 524 if (!gcm_profile_service_->driver()) { | |
| 525 NOTREACHED() << "There is no GCMDriver. Has GCMProfileService shut down?"; | |
| 526 return; | |
| 527 } | |
| 528 | |
| 529 PushMessagingApplicationId application_id = | 511 PushMessagingApplicationId application_id = |
| 530 PushMessagingApplicationId::Generate(requesting_origin, | 512 PushMessagingApplicationId::Generate(requesting_origin, |
| 531 service_worker_registration_id); | 513 service_worker_registration_id); |
| 532 DCHECK(application_id.IsValid()); | 514 DCHECK(application_id.IsValid()); |
| 533 | 515 |
| 534 if (profile_->GetPrefs()->GetInteger( | 516 if (profile_->GetPrefs()->GetInteger( |
| 535 prefs::kPushMessagingRegistrationCount) >= kMaxRegistrations) { | 517 prefs::kPushMessagingRegistrationCount) >= kMaxRegistrations) { |
| 536 RegisterEnd(register_callback, std::string(), | 518 RegisterEnd(register_callback, std::string(), |
| 537 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED); | 519 content::PUSH_REGISTRATION_STATUS_LIMIT_REACHED); |
| 538 return; | 520 return; |
| 539 } | 521 } |
| 540 | 522 |
| 541 GURL embedding_origin = requesting_origin; | 523 GURL embedding_origin = requesting_origin; |
| 542 blink::WebPushPermissionStatus permission_status = | 524 blink::WebPushPermissionStatus permission_status = |
| 543 PushMessagingServiceImpl::GetPermissionStatus(requesting_origin, | 525 PushMessagingServiceImpl::GetPermissionStatus(requesting_origin, |
| 544 embedding_origin); | 526 embedding_origin); |
| 545 if (permission_status != blink::WebPushPermissionStatusGranted) { | 527 if (permission_status != blink::WebPushPermissionStatusGranted) { |
| 546 RegisterEnd(register_callback, std::string(), | 528 RegisterEnd(register_callback, std::string(), |
| 547 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); | 529 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); |
| 548 return; | 530 return; |
| 549 } | 531 } |
| 550 | 532 |
| 551 IncreasePushRegistrationCount(1, true /* is_pending */); | 533 IncreasePushRegistrationCount(1, true /* is_pending */); |
| 552 std::vector<std::string> sender_ids(1, sender_id); | 534 std::vector<std::string> sender_ids(1, sender_id); |
| 553 gcm_profile_service_->driver()->Register( | 535 gcm_driver()->Register( |
| 554 application_id.app_id_guid(), sender_ids, | 536 application_id.app_id_guid(), sender_ids, |
| 555 base::Bind(&PushMessagingServiceImpl::DidRegister, | 537 base::Bind(&PushMessagingServiceImpl::DidRegister, |
| 556 weak_factory_.GetWeakPtr(), | 538 weak_factory_.GetWeakPtr(), |
| 557 application_id, register_callback)); | 539 application_id, register_callback)); |
| 558 } | 540 } |
| 559 | 541 |
| 560 blink::WebPushPermissionStatus PushMessagingServiceImpl::GetPermissionStatus( | 542 blink::WebPushPermissionStatus PushMessagingServiceImpl::GetPermissionStatus( |
| 561 const GURL& requesting_origin, | 543 const GURL& requesting_origin, |
| 562 const GURL& embedding_origin) { | 544 const GURL& embedding_origin) { |
| 563 PushMessagingPermissionContext* permission_context = | 545 PushMessagingPermissionContext* permission_context = |
| 564 PushMessagingPermissionContextFactory::GetForProfile(profile_); | 546 PushMessagingPermissionContextFactory::GetForProfile(profile_); |
| 565 return ToPushPermission(permission_context->GetPermissionStatus( | 547 return ToPushPermission(permission_context->GetPermissionStatus( |
| 566 requesting_origin, embedding_origin)); | 548 requesting_origin, embedding_origin)); |
| 567 } | 549 } |
| 568 | 550 |
| 569 void PushMessagingServiceImpl::RegisterEnd( | 551 void PushMessagingServiceImpl::RegisterEnd( |
| 570 const content::PushMessagingService::RegisterCallback& callback, | 552 const content::PushMessagingService::RegisterCallback& callback, |
| 571 const std::string& registration_id, | 553 const std::string& registration_id, |
| 572 content::PushRegistrationStatus status) { | 554 content::PushRegistrationStatus status) { |
| 573 callback.Run(registration_id, status); | 555 callback.Run(registration_id, status); |
| 574 } | 556 } |
| 575 | 557 |
| 576 void PushMessagingServiceImpl::DidRegister( | 558 void PushMessagingServiceImpl::DidRegister( |
| 577 const PushMessagingApplicationId& application_id, | 559 const PushMessagingApplicationId& application_id, |
| 578 const content::PushMessagingService::RegisterCallback& callback, | 560 const content::PushMessagingService::RegisterCallback& callback, |
| 579 const std::string& registration_id, | 561 const std::string& registration_id, |
| 580 GCMClient::Result result) { | 562 gcm::GCMClient::Result result) { |
| 581 content::PushRegistrationStatus status = | 563 content::PushRegistrationStatus status = |
| 582 content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR; | 564 content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR; |
| 583 switch (result) { | 565 switch (result) { |
| 584 case GCMClient::SUCCESS: | 566 case gcm::GCMClient::SUCCESS: |
| 585 status = content::PUSH_REGISTRATION_STATUS_SUCCESS_FROM_PUSH_SERVICE; | 567 status = content::PUSH_REGISTRATION_STATUS_SUCCESS_FROM_PUSH_SERVICE; |
| 586 application_id.PersistToDisk(profile_); | 568 application_id.PersistToDisk(profile_); |
| 587 IncreasePushRegistrationCount(1, false /* is_pending */); | 569 IncreasePushRegistrationCount(1, false /* is_pending */); |
| 588 break; | 570 break; |
| 589 case GCMClient::INVALID_PARAMETER: | 571 case gcm::GCMClient::INVALID_PARAMETER: |
| 590 case GCMClient::GCM_DISABLED: | 572 case gcm::GCMClient::GCM_DISABLED: |
| 591 case GCMClient::ASYNC_OPERATION_PENDING: | 573 case gcm::GCMClient::ASYNC_OPERATION_PENDING: |
| 592 case GCMClient::SERVER_ERROR: | 574 case gcm::GCMClient::SERVER_ERROR: |
| 593 case GCMClient::UNKNOWN_ERROR: | 575 case gcm::GCMClient::UNKNOWN_ERROR: |
| 594 status = content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR; | 576 status = content::PUSH_REGISTRATION_STATUS_SERVICE_ERROR; |
| 595 break; | 577 break; |
| 596 case GCMClient::NETWORK_ERROR: | 578 case gcm::GCMClient::NETWORK_ERROR: |
| 597 case GCMClient::TTL_EXCEEDED: | 579 case gcm::GCMClient::TTL_EXCEEDED: |
| 598 status = content::PUSH_REGISTRATION_STATUS_NETWORK_ERROR; | 580 status = content::PUSH_REGISTRATION_STATUS_NETWORK_ERROR; |
| 599 break; | 581 break; |
| 600 } | 582 } |
| 601 RegisterEnd(callback, registration_id, status); | 583 RegisterEnd(callback, registration_id, status); |
| 602 DecreasePushRegistrationCount(1, true /* was_pending */); | 584 DecreasePushRegistrationCount(1, true /* was_pending */); |
| 603 } | 585 } |
| 604 | 586 |
| 605 void PushMessagingServiceImpl::DidRequestPermission( | 587 void PushMessagingServiceImpl::DidRequestPermission( |
| 606 const PushMessagingApplicationId& application_id, | 588 const PushMessagingApplicationId& application_id, |
| 607 const std::string& sender_id, | 589 const std::string& sender_id, |
| 608 const content::PushMessagingService::RegisterCallback& register_callback, | 590 const content::PushMessagingService::RegisterCallback& register_callback, |
| 609 bool allow) { | 591 bool allow) { |
| 610 if (!allow) { | 592 if (!allow) { |
| 611 RegisterEnd(register_callback, | 593 RegisterEnd(register_callback, |
| 612 std::string(), | 594 std::string(), |
| 613 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); | 595 content::PUSH_REGISTRATION_STATUS_PERMISSION_DENIED); |
| 614 return; | 596 return; |
| 615 } | 597 } |
| 616 | 598 |
| 617 // The GCMDriver could be NULL if GCMProfileService has been shut down. | |
| 618 if (!gcm_profile_service_->driver()) | |
| 619 return; | |
| 620 | |
| 621 IncreasePushRegistrationCount(1, true /* is_pending */); | 599 IncreasePushRegistrationCount(1, true /* is_pending */); |
| 622 std::vector<std::string> sender_ids(1, sender_id); | 600 std::vector<std::string> sender_ids(1, sender_id); |
| 623 gcm_profile_service_->driver()->Register( | 601 gcm_driver()->Register( |
| 624 application_id.app_id_guid(), | 602 application_id.app_id_guid(), |
| 625 sender_ids, | 603 sender_ids, |
| 626 base::Bind(&PushMessagingServiceImpl::DidRegister, | 604 base::Bind(&PushMessagingServiceImpl::DidRegister, |
| 627 weak_factory_.GetWeakPtr(), | 605 weak_factory_.GetWeakPtr(), |
| 628 application_id, register_callback)); | 606 application_id, register_callback)); |
| 629 } | 607 } |
| 630 | 608 |
| 631 // Unregister methods ---------------------------------------------------------- | 609 // Unregister methods ---------------------------------------------------------- |
| 632 | 610 |
| 633 void PushMessagingServiceImpl::Unregister( | 611 void PushMessagingServiceImpl::Unregister( |
| 634 const GURL& requesting_origin, | 612 const GURL& requesting_origin, |
| 635 int64 service_worker_registration_id, | 613 int64 service_worker_registration_id, |
| 636 const std::string& sender_id, | 614 const std::string& sender_id, |
| 637 bool retry_on_failure, | 615 bool retry_on_failure, |
| 638 const content::PushMessagingService::UnregisterCallback& callback) { | 616 const content::PushMessagingService::UnregisterCallback& callback) { |
| 639 DCHECK(gcm_profile_service_->driver()); | |
| 640 | |
| 641 PushMessagingApplicationId application_id = PushMessagingApplicationId::Get( | 617 PushMessagingApplicationId application_id = PushMessagingApplicationId::Get( |
| 642 profile_, requesting_origin, service_worker_registration_id); | 618 profile_, requesting_origin, service_worker_registration_id); |
| 643 if (!application_id.IsValid()) { | 619 if (!application_id.IsValid()) { |
| 644 if (!callback.is_null()) { | 620 if (!callback.is_null()) { |
| 645 callback.Run( | 621 callback.Run( |
| 646 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED); | 622 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED); |
| 647 } | 623 } |
| 648 return; | 624 return; |
| 649 } | 625 } |
| 650 | 626 |
| 651 Unregister(application_id.app_id_guid(), sender_id, retry_on_failure, | 627 Unregister(application_id.app_id_guid(), sender_id, retry_on_failure, |
| 652 callback); | 628 callback); |
| 653 } | 629 } |
| 654 | 630 |
| 655 void PushMessagingServiceImpl::Unregister( | 631 void PushMessagingServiceImpl::Unregister( |
| 656 const std::string& app_id_guid, | 632 const std::string& app_id_guid, |
| 657 const std::string& sender_id, | 633 const std::string& sender_id, |
| 658 bool retry_on_failure, | 634 bool retry_on_failure, |
| 659 const content::PushMessagingService::UnregisterCallback& callback) { | 635 const content::PushMessagingService::UnregisterCallback& callback) { |
| 660 DCHECK(gcm_profile_service_->driver()); | |
| 661 | |
| 662 if (retry_on_failure) { | 636 if (retry_on_failure) { |
| 663 // Delete the mapping for this app id, to guarantee that no messages get | 637 // Delete the mapping for this app id, to guarantee that no messages get |
| 664 // delivered in future (even if unregistration fails). | 638 // delivered in future (even if unregistration fails). |
| 665 // TODO(johnme): Instead of deleting these app ids, store them elsewhere, | 639 // TODO(johnme): Instead of deleting these app ids, store them elsewhere, |
| 666 // and retry unregistration if it fails due to network errors. | 640 // and retry unregistration if it fails due to network errors. |
| 667 PushMessagingApplicationId application_id = | 641 PushMessagingApplicationId application_id = |
| 668 PushMessagingApplicationId::Get(profile_, app_id_guid); | 642 PushMessagingApplicationId::Get(profile_, app_id_guid); |
| 669 if (application_id.IsValid()) | 643 if (application_id.IsValid()) |
| 670 application_id.DeleteFromDisk(profile_); | 644 application_id.DeleteFromDisk(profile_); |
| 671 } | 645 } |
| 672 | 646 |
| 673 const auto& unregister_callback = | 647 const auto& unregister_callback = |
| 674 base::Bind(&PushMessagingServiceImpl::DidUnregister, | 648 base::Bind(&PushMessagingServiceImpl::DidUnregister, |
| 675 weak_factory_.GetWeakPtr(), | 649 weak_factory_.GetWeakPtr(), |
| 676 app_id_guid, retry_on_failure, callback); | 650 app_id_guid, retry_on_failure, callback); |
| 677 #if defined(OS_ANDROID) | 651 #if defined(OS_ANDROID) |
| 678 // On Android the backend is different, and requires the original sender_id. | 652 // On Android the backend is different, and requires the original sender_id. |
| 679 gcm_profile_service_->driver()->UnregisterWithSenderId(app_id_guid, sender_id, | 653 gcm_driver()->UnregisterWithSenderId(app_id_guid, sender_id, |
| 680 unregister_callback); | 654 unregister_callback); |
| 681 #else | 655 #else |
| 682 gcm_profile_service_->driver()->Unregister(app_id_guid, unregister_callback); | 656 gcm_driver()->Unregister(app_id_guid, unregister_callback); |
| 683 #endif | 657 #endif |
| 684 } | 658 } |
| 685 | 659 |
| 686 void PushMessagingServiceImpl::DidUnregister( | 660 void PushMessagingServiceImpl::DidUnregister( |
| 687 const std::string& app_id_guid, | 661 const std::string& app_id_guid, |
| 688 bool retry_on_failure, | 662 bool retry_on_failure, |
| 689 const content::PushMessagingService::UnregisterCallback& callback, | 663 const content::PushMessagingService::UnregisterCallback& callback, |
| 690 GCMClient::Result result) { | 664 gcm::GCMClient::Result result) { |
| 691 if (result == GCMClient::SUCCESS) { | 665 if (result == gcm::GCMClient::SUCCESS) { |
| 692 PushMessagingApplicationId application_id = | 666 PushMessagingApplicationId application_id = |
| 693 PushMessagingApplicationId::Get(profile_, app_id_guid); | 667 PushMessagingApplicationId::Get(profile_, app_id_guid); |
| 694 if (!application_id.IsValid()) { | 668 if (!application_id.IsValid()) { |
| 695 if (!callback.is_null()) { | 669 if (!callback.is_null()) { |
| 696 callback.Run( | 670 callback.Run( |
| 697 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED); | 671 content::PUSH_UNREGISTRATION_STATUS_SUCCESS_WAS_NOT_REGISTERED); |
| 698 } | 672 } |
| 699 return; | 673 return; |
| 700 } | 674 } |
| 701 | 675 |
| 702 application_id.DeleteFromDisk(profile_); | 676 application_id.DeleteFromDisk(profile_); |
| 703 DecreasePushRegistrationCount(1, false /* was_pending */); | 677 DecreasePushRegistrationCount(1, false /* was_pending */); |
| 704 } | 678 } |
| 705 | 679 |
| 706 // Internal calls pass a null callback. | 680 // Internal calls pass a null callback. |
| 707 if (!callback.is_null()) { | 681 if (!callback.is_null()) { |
| 708 switch (result) { | 682 switch (result) { |
| 709 case GCMClient::SUCCESS: | 683 case gcm::GCMClient::SUCCESS: |
| 710 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SUCCESS_UNREGISTERED); | 684 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SUCCESS_UNREGISTERED); |
| 711 break; | 685 break; |
| 712 case GCMClient::INVALID_PARAMETER: | 686 case gcm::GCMClient::INVALID_PARAMETER: |
| 713 case GCMClient::GCM_DISABLED: | 687 case gcm::GCMClient::GCM_DISABLED: |
| 714 case GCMClient::ASYNC_OPERATION_PENDING: | 688 case gcm::GCMClient::ASYNC_OPERATION_PENDING: |
| 715 case GCMClient::SERVER_ERROR: | 689 case gcm::GCMClient::SERVER_ERROR: |
| 716 case GCMClient::UNKNOWN_ERROR: | 690 case gcm::GCMClient::UNKNOWN_ERROR: |
| 717 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SERVICE_ERROR); | 691 callback.Run(content::PUSH_UNREGISTRATION_STATUS_SERVICE_ERROR); |
| 718 break; | 692 break; |
| 719 case GCMClient::NETWORK_ERROR: | 693 case gcm::GCMClient::NETWORK_ERROR: |
| 720 case GCMClient::TTL_EXCEEDED: | 694 case gcm::GCMClient::TTL_EXCEEDED: |
| 721 callback.Run( | 695 callback.Run( |
| 722 retry_on_failure | 696 retry_on_failure |
| 723 ? content:: | 697 ? content:: |
| 724 PUSH_UNREGISTRATION_STATUS_PENDING_WILL_RETRY_NETWORK_ERROR | 698 PUSH_UNREGISTRATION_STATUS_PENDING_WILL_RETRY_NETWORK_ERROR |
| 725 : content::PUSH_UNREGISTRATION_STATUS_NETWORK_ERROR); | 699 : content::PUSH_UNREGISTRATION_STATUS_NETWORK_ERROR); |
| 726 break; | 700 break; |
| 727 } | 701 } |
| 728 } | 702 } |
| 729 } | 703 } |
| 730 | 704 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 765 const std::string& sender_id, bool success, bool not_found) { | 739 const std::string& sender_id, bool success, bool not_found) { |
| 766 // Unregister the PushMessagingApplicationId with the push service. | 740 // Unregister the PushMessagingApplicationId with the push service. |
| 767 Unregister(id.app_id_guid(), sender_id, true /* retry_on_failure */, | 741 Unregister(id.app_id_guid(), sender_id, true /* retry_on_failure */, |
| 768 UnregisterCallback()); | 742 UnregisterCallback()); |
| 769 | 743 |
| 770 // Clear the associated service worker push registration id. | 744 // Clear the associated service worker push registration id. |
| 771 PushMessagingService::ClearPushRegistrationID( | 745 PushMessagingService::ClearPushRegistrationID( |
| 772 profile_, id.origin(), id.service_worker_registration_id()); | 746 profile_, id.origin(), id.service_worker_registration_id()); |
| 773 } | 747 } |
| 774 | 748 |
| 749 // KeyedService methods ------------------------------------------------------- | |
| 750 | |
| 751 void PushMessagingServiceImpl::Shutdown() { | |
| 752 gcm_driver()->RemoveAppHandler(kPushMessagingApplicationIdPrefix); | |
| 753 } | |
| 754 | |
| 775 // Helper methods -------------------------------------------------------------- | 755 // Helper methods -------------------------------------------------------------- |
| 776 | 756 |
| 777 bool PushMessagingServiceImpl::HasPermission(const GURL& origin) { | 757 bool PushMessagingServiceImpl::HasPermission(const GURL& origin) { |
| 778 gcm::PushMessagingPermissionContext* permission_context = | 758 PushMessagingPermissionContext* permission_context = |
| 779 gcm::PushMessagingPermissionContextFactory::GetForProfile(profile_); | 759 PushMessagingPermissionContextFactory::GetForProfile(profile_); |
| 780 DCHECK(permission_context); | 760 DCHECK(permission_context); |
| 781 | 761 |
| 782 return permission_context->GetPermissionStatus(origin, origin) == | 762 return permission_context->GetPermissionStatus(origin, origin) == |
| 783 CONTENT_SETTING_ALLOW; | 763 CONTENT_SETTING_ALLOW; |
| 784 } | 764 } |
| 785 | 765 |
| 786 void PushMessagingServiceImpl::SetProfileForTesting(Profile* profile) { | 766 gcm::GCMDriver* PushMessagingServiceImpl::gcm_driver() const { |
| 787 profile_ = profile; | 767 // The driver has to be created not later then we are created and should be |
| 788 profile_->GetHostContentSettingsMap()->AddObserver(this); | 768 // alive till we are. This is assured by PushMessagingServiceFactory |
| 769 // being dependant on GCMProfileServiceFactory. | |
| 770 gcm::GCMDriver* driver = gcm_profile_service_->driver(); | |
|
johnme
2015/03/03 17:59:19
To resolve the dependency lifetimes issue, you cou
| |
| 771 CHECK(driver); | |
| 772 return driver; | |
| 789 } | 773 } |
| 790 | |
| 791 } // namespace gcm | |
| OLD | NEW |