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

Unified Diff: components/gcm_driver/gcm_app_handler.cc

Issue 338363003: Push API: register PushMessagingServiceImpl as GCMAppHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing const on CanHandle. 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_app_handler.cc
diff --git a/components/gcm_driver/gcm_app_handler.cc b/components/gcm_driver/gcm_app_handler.cc
index 26d2031b16dc3e49735ac4a7567de6c9e0b6e9b5..ed00cbe1e3ffebf9ccb03f67cb34a313cd853d57 100644
--- a/components/gcm_driver/gcm_app_handler.cc
+++ b/components/gcm_driver/gcm_app_handler.cc
@@ -15,4 +15,8 @@ void GCMAppHandler::OnConnected(const net::IPEndPoint& ip_endpoint) {
void GCMAppHandler::OnDisconnected() {
}
+bool GCMAppHandler::CanHandle(const std::string& app_id) const {
+ return false;
+}
+
} // namespace gcm

Powered by Google App Engine
This is Rietveld 408576698