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

Unified Diff: google_apis/gcm/engine/gcm_store.cc

Issue 135303002: Adding a user list (to be consumed by GCM Client Implementation) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing Win64 compilation issue and adding comments to test Created 6 years, 11 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 | « google_apis/gcm/engine/gcm_store.h ('k') | google_apis/gcm/engine/gcm_store_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gcm/engine/gcm_store.cc
diff --git a/google_apis/gcm/engine/gcm_store.cc b/google_apis/gcm/engine/gcm_store.cc
index b8559b09cfc9abf2b3b521daa923daf59edd591b..f6c81dda8958eee8d9b650a9eae7405cb41f269b 100644
--- a/google_apis/gcm/engine/gcm_store.cc
+++ b/google_apis/gcm/engine/gcm_store.cc
@@ -6,11 +6,18 @@
namespace gcm {
+GCMStore::SerialNumberMappings::SerialNumberMappings()
+ : next_serial_number(1LL) {
+}
+
+GCMStore::SerialNumberMappings::~SerialNumberMappings() {
+}
+
GCMStore::LoadResult::LoadResult()
: success(false),
device_android_id(0),
- device_security_token(0),
- next_serial_number(1LL) {}
+ device_security_token(0) {
+}
GCMStore::LoadResult::~LoadResult() {}
« no previous file with comments | « google_apis/gcm/engine/gcm_store.h ('k') | google_apis/gcm/engine/gcm_store_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698