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

Unified Diff: components/gcm_driver/gcm_driver.cc

Issue 340773006: Dispatch push event to worker from PushServiceImpl#OnMessage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Debugging. Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: components/gcm_driver/gcm_driver.cc
diff --git a/components/gcm_driver/gcm_driver.cc b/components/gcm_driver/gcm_driver.cc
index cfe9f99eaf68a04e4b6e6573e0886fa469ed37a1..64876c8e39e83178d62e8a327aef3ee9e0e204bd 100644
--- a/components/gcm_driver/gcm_driver.cc
+++ b/components/gcm_driver/gcm_driver.cc
@@ -158,6 +158,7 @@ void GCMDriver::RemoveAppHandler(const std::string& app_id) {
}
GCMAppHandler* GCMDriver::GetAppHandler(const std::string& app_id) {
+ LOG(WARNING) << "app_id: " << app_id;
// Look for exact match.
GCMAppHandlerMap::const_iterator iter = app_handlers_.find(app_id);
if (iter != app_handlers_.end())

Powered by Google App Engine
This is Rietveld 408576698