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

Unified Diff: components/gcm_driver/crypto/gcm_key_store.h

Issue 1948133003: Fix GCMKeyStore interleaved request handling (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iid5default
Patch Set: Address review comments Created 4 years, 7 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
« no previous file with comments | « no previous file | components/gcm_driver/crypto/gcm_key_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/gcm_driver/crypto/gcm_key_store.h
diff --git a/components/gcm_driver/crypto/gcm_key_store.h b/components/gcm_driver/crypto/gcm_key_store.h
index 743785aeba2e71b01b2248963fa0dfe37f584ef5..05efc034ad096d7b48bf32708306c5e8ca594c83 100644
--- a/components/gcm_driver/crypto/gcm_key_store.h
+++ b/components/gcm_driver/crypto/gcm_key_store.h
@@ -66,15 +66,12 @@ class GCMKeyStore {
void DidLoadKeys(bool success,
std::unique_ptr<std::vector<EncryptionData>> entries);
- void DidStoreKeys(const std::string& app_id,
- const KeyPair& pair,
+ void DidStoreKeys(const KeyPair& pair,
const std::string& auth_secret,
const KeysCallback& callback,
bool success);
- void DidRemoveKeys(const std::string& app_id,
- const base::Closure& callback,
- bool success);
+ void DidRemoveKeys(const base::Closure& callback, bool success);
// Private implementations of the API that will be executed when the database
// has either been successfully loaded, or failed to load.
« no previous file with comments | « no previous file | components/gcm_driver/crypto/gcm_key_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698