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

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

Issue 215363007: [GCM] Adding basic G-services handling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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: google_apis/gcm/engine/gcm_store.h
diff --git a/google_apis/gcm/engine/gcm_store.h b/google_apis/gcm/engine/gcm_store.h
index 659fc7f9d1eaa2950a4732f9c5da87ac9b4b95af..aaf8a67360134566469ce7f89153328b49ce8d10 100644
--- a/google_apis/gcm/engine/gcm_store.h
+++ b/google_apis/gcm/engine/gcm_store.h
@@ -14,6 +14,7 @@
#include "base/memory/linked_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
+#include "base/time/time.h"
#include "google_apis/gcm/base/gcm_export.h"
#include "google_apis/gcm/engine/registration_info.h"
#include "google_apis/gcm/protocol/mcs.pb.h"
@@ -47,6 +48,8 @@ class GCM_EXPORT GCMStore {
RegistrationInfoMap registrations;
std::vector<std::string> incoming_messages;
OutgoingMessageMap outgoing_messages;
+ std::map<std::string, std::string> g_services_settings;
+ base::Time last_checkin_time;
};
typedef std::vector<std::string> PersistentIdList;
@@ -101,6 +104,12 @@ class GCM_EXPORT GCMStore {
virtual void RemoveOutgoingMessages(const PersistentIdList& persistent_ids,
const UpdateCallback& callback) = 0;
+ // GService Settings handling.
Nicolas Zea 2014/03/28 18:31:38 Comment whether it's assumed settings_to_remove an
fgorski 2014/03/29 01:09:32 Done.
+ virtual void UpdateGServicesSettings(
fgorski 2014/03/28 14:30:51 we should pass last_checkin_time in to ensure we t
Nicolas Zea 2014/03/28 18:31:38 Yeah, that should be persisted in a separate call
fgorski 2014/03/29 01:09:32 No it should not. The settings will be updated onl
fgorski 2014/03/29 01:09:32 Done.
+ const std::vector<std::string>& settings_to_remove,
+ const std::map<std::string, std::string>& settings_to_add,
+ const UpdateCallback& callback) = 0;
+
private:
DISALLOW_COPY_AND_ASSIGN(GCMStore);
};

Powered by Google App Engine
This is Rietveld 408576698