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

Unified Diff: chrome/browser/extensions/extension_sync_data.h

Issue 8727024: Save the oauth client id used in App Notification setup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed nits Created 9 years, 1 month 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 | « chrome/browser/extensions/extension_service.cc ('k') | chrome/browser/extensions/extension_sync_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_sync_data.h
diff --git a/chrome/browser/extensions/extension_sync_data.h b/chrome/browser/extensions/extension_sync_data.h
index 3386adcdf614da0c1564fc8f8d1bd93645594ff3..f072de643ea90ad593c1f2f02cbf49cb077ff3f7 100644
--- a/chrome/browser/extensions/extension_sync_data.h
+++ b/chrome/browser/extensions/extension_sync_data.h
@@ -29,7 +29,7 @@ class ExtensionSyncData {
ExtensionSyncData(const Extension& extension,
bool enabled,
bool incognito_enabled,
- bool notifications_initial_setup_done,
+ const std::string& notifications_client_id,
bool notifications_disabled);
~ExtensionSyncData();
@@ -56,8 +56,8 @@ class ExtensionSyncData {
// Used only for debugging.
const std::string& name() const { return name_; }
- bool notifications_initial_setup_done() const {
- return notifications_initial_setup_done_;
+ const std::string& notifications_client_id() const {
+ return notifications_client_id_;
}
bool notifications_disabled() const {
@@ -77,7 +77,7 @@ class ExtensionSyncData {
Version version_;
GURL update_url_;
std::string name_;
- bool notifications_initial_setup_done_;
+ std::string notifications_client_id_;
bool notifications_disabled_;
};
« no previous file with comments | « chrome/browser/extensions/extension_service.cc ('k') | chrome/browser/extensions/extension_sync_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698