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

Unified Diff: components/gcm_driver/gcm_driver.cc

Issue 2111973002: Add support for GCM subtypes to desktop Instance ID implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iid9push
Patch Set: address most of peter's concerns Created 4 years, 5 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 21d30549d07030b043adfa405f0ab45eb6b94931..cb60f00a30eb53bb7952f527cbbfa52ad48ec3c7 100644
--- a/components/gcm_driver/gcm_driver.cc
+++ b/components/gcm_driver/gcm_driver.cc
@@ -29,8 +29,10 @@ InstanceIDHandler::~InstanceIDHandler() {
}
void InstanceIDHandler::DeleteAllTokensForApp(
- const std::string& app_id, const DeleteTokenCallback& callback) {
- DeleteToken(app_id, "*", "*", callback);
+ const std::string& app_id,
+ bool use_subtype,
+ const DeleteTokenCallback& callback) {
+ DeleteToken(app_id, use_subtype, "*", "*", callback);
}
GCMDriver::GCMDriver(

Powered by Google App Engine
This is Rietveld 408576698