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

Side by Side Diff: chrome/browser/extensions/app_sync_bundle.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_EXTENSIONS_APP_SYNC_BUNDLE_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_APP_SYNC_BUNDLE_H_
6 #define CHROME_BROWSER_EXTENSIONS_APP_SYNC_BUNDLE_H_ 6 #define CHROME_BROWSER_EXTENSIONS_APP_SYNC_BUNDLE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // Returns a vector of all the pending sync data. 73 // Returns a vector of all the pending sync data.
74 std::vector<AppSyncData> GetPendingData() const; 74 std::vector<AppSyncData> GetPendingData() const;
75 75
76 // Appends sync data objects for every app in |extensions|. 76 // Appends sync data objects for every app in |extensions|.
77 void GetAppSyncDataListHelper( 77 void GetAppSyncDataListHelper(
78 const ExtensionSet& extensions, 78 const ExtensionSet& extensions,
79 std::vector<extensions::AppSyncData>* sync_data_list) const; 79 std::vector<extensions::AppSyncData>* sync_data_list) const;
80 80
81 // Overrides for SyncBundle. 81 // Overrides for SyncBundle.
82 // Returns true if SetupSync has been called, false otherwise. 82 // Returns true if SetupSync has been called, false otherwise.
83 virtual bool IsSyncing() const OVERRIDE; 83 virtual bool IsSyncing() const override;
84 84
85 // Sync a newly-installed application or change an existing one. 85 // Sync a newly-installed application or change an existing one.
86 virtual void SyncChangeIfNeeded(const Extension& extension) OVERRIDE; 86 virtual void SyncChangeIfNeeded(const Extension& extension) override;
87 87
88 private: 88 private:
89 // Add a synced app. 89 // Add a synced app.
90 void AddApp(const std::string& id); 90 void AddApp(const std::string& id);
91 91
92 // Remove a synced app. 92 // Remove a synced app.
93 void RemoveApp(const std::string& id); // make private 93 void RemoveApp(const std::string& id); // make private
94 94
95 // Change an app from being pending to synced. 95 // Change an app from being pending to synced.
96 void MarkPendingAppSynced(const std::string& id); 96 void MarkPendingAppSynced(const std::string& id);
97 97
98 ExtensionSyncService* extension_sync_service_; // Own us. 98 ExtensionSyncService* extension_sync_service_; // Own us.
99 scoped_ptr<syncer::SyncChangeProcessor> sync_processor_; 99 scoped_ptr<syncer::SyncChangeProcessor> sync_processor_;
100 scoped_ptr<syncer::SyncErrorFactory> sync_error_factory_; 100 scoped_ptr<syncer::SyncErrorFactory> sync_error_factory_;
101 101
102 std::set<std::string> synced_apps_; 102 std::set<std::string> synced_apps_;
103 std::map<std::string, AppSyncData> pending_sync_data_; 103 std::map<std::string, AppSyncData> pending_sync_data_;
104 104
105 DISALLOW_COPY_AND_ASSIGN(AppSyncBundle); 105 DISALLOW_COPY_AND_ASSIGN(AppSyncBundle);
106 }; 106 };
107 107
108 } // namespace extensions 108 } // namespace extensions
109 109
110 #endif // CHROME_BROWSER_EXTENSIONS_APP_SYNC_BUNDLE_H_ 110 #endif // CHROME_BROWSER_EXTENSIONS_APP_SYNC_BUNDLE_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/app_process_apitest.cc ('k') | chrome/browser/extensions/background_app_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698