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

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

Issue 12680004: Remove chrome/ code to handle App Notifications (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflicts. Created 7 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
« no previous file with comments | « chrome/browser/extensions/app_notify_channel_ui_impl.cc ('k') | chrome/browser/extensions/app_sync_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/app_sync_data.h
diff --git a/chrome/browser/extensions/app_sync_data.h b/chrome/browser/extensions/app_sync_data.h
index 7e8d0a42a3a6c6a721e7dabaca815c52f38f3340..0d2c67fd362956fc10f7086c73c79fe5cec73158 100644
--- a/chrome/browser/extensions/app_sync_data.h
+++ b/chrome/browser/extensions/app_sync_data.h
@@ -31,8 +31,6 @@ class AppSyncData {
AppSyncData(const Extension& extension,
bool enabled,
bool incognito_enabled,
- const std::string& notifications_client_id,
- bool notifications_disabled,
const syncer::StringOrdinal& app_launch_ordinal,
const syncer::StringOrdinal& page_ordinal);
~AppSyncData();
@@ -46,14 +44,6 @@ class AppSyncData {
bool uninstalled() const { return extension_sync_data_.uninstalled(); }
- const std::string& notifications_client_id() const {
- return notifications_client_id_;
- }
-
- bool notifications_disabled() const {
- return notifications_disabled_;
- }
-
// These ordinals aren't necessarily valid. Some applications don't have
// valid ordinals because they don't appear on the new tab page.
const syncer::StringOrdinal& app_launch_ordinal() const {
@@ -75,8 +65,6 @@ class AppSyncData {
void PopulateFromSyncData(const syncer::SyncData& sync_data);
ExtensionSyncData extension_sync_data_;
- std::string notifications_client_id_;
- bool notifications_disabled_;
syncer::StringOrdinal app_launch_ordinal_;
syncer::StringOrdinal page_ordinal_;
};
@@ -84,3 +72,4 @@ class AppSyncData {
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_
+
« no previous file with comments | « chrome/browser/extensions/app_notify_channel_ui_impl.cc ('k') | chrome/browser/extensions/app_sync_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698