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

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

Issue 288433002: G-services settings v3 implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing feedback from Jian Li Created 6 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
Index: google_apis/gcm/engine/gservices_settings.h
diff --git a/google_apis/gcm/engine/gservices_settings.h b/google_apis/gcm/engine/gservices_settings.h
index 7961ca278447a374505b4ccebd5effb21329ebbe..e895e2eb88e62918b9cac5f7957221889cf6a71a 100644
--- a/google_apis/gcm/engine/gservices_settings.h
+++ b/google_apis/gcm/engine/gservices_settings.h
@@ -21,12 +21,17 @@ namespace gcm {
// extracting them from checkin response and storing in GCMStore.
class GCM_EXPORT GServicesSettings {
public:
+ typedef std::map<std::string, std::string> SettingsMap;
+
// Minimum periodic checkin interval in seconds.
static const base::TimeDelta MinimumCheckinInterval();
// Default checkin URL.
static const GURL DefaultCheckinURL();
+ // Calculates digest of provided settings.
+ static std::string CalculateDigest(const SettingsMap& settings);
+
GServicesSettings();
~GServicesSettings();
@@ -39,44 +44,33 @@ class GCM_EXPORT GServicesSettings {
void UpdateFromLoadResult(const GCMStore::LoadResult& load_result);
// Gets the settings as a map of string to string for storing.
- std::map<std::string, std::string> GetSettingsMap() const;
+ SettingsMap get_settings_map() const { return settings_; }
jianli 2014/05/14 20:13:22 nit: normally we do not add "get" to the getter. S
fgorski 2014/05/14 20:44:34 Done. I also noticed that when adding more tests.
std::string digest() const { return digest_; }
- base::TimeDelta checkin_interval() const { return checkin_interval_; }
+ // Gets the interval at which device should perform a checkin.
+ base::TimeDelta GetCheckinInterval() const;
- GURL checkin_url() const { return checkin_url_; }
+ // Gets a URL to use when checkin in.
+ GURL GetCheckinURL() const;
- GURL mcs_main_endpoint() const { return mcs_main_endpoint_; }
+ // Gets address of main MCS endpoint.
+ GURL GetMCSMainEndpoint() const;
- GURL mcs_fallback_endpoint() const { return mcs_fallback_endpoint_; }
+ // Gets address of fallback MCS endpoint.
+ GURL GetMCSFallbackEndpoint() const;
- GURL registration_url() const { return registration_url_; }
+ // Gets a URL to use when registering or unregistering the apps.
+ GURL GetRegistrationURL() const;
private:
- // Parses the |settings| to fill in specific fields.
- // TODO(fgorski): Change to a status variable that can be logged to UMA.
- bool UpdateSettings(const std::map<std::string, std::string>& settings);
-
// Digest (hash) of the settings, used to check whether settings need update.
// It is meant to be sent with checkin request, instead of sending the whole
// settings table.
std::string digest_;
- // Time delta between periodic checkins.
- base::TimeDelta checkin_interval_;
-
- // URL that should be used for checkins.
- GURL checkin_url_;
-
- // Main MCS endpoint.
- GURL mcs_main_endpoint_;
-
- // Fallback MCS endpoint.
- GURL mcs_fallback_endpoint_;
-
- // URL that should be used for regisrations and unregistrations.
- GURL registration_url_;
+ // G-services settings as provided by checkin response.
+ SettingsMap settings_;
// Factory for creating references in callbacks.
base::WeakPtrFactory<GServicesSettings> weak_ptr_factory_;
« no previous file with comments | « no previous file | google_apis/gcm/engine/gservices_settings.cc » ('j') | google_apis/gcm/engine/gservices_settings.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698