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

Unified Diff: chrome/browser/sync/profile_sync_factory_impl.h

Issue 8470005: Add OVERRIDE to chrome/browser/sync/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: includes 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
Index: chrome/browser/sync/profile_sync_factory_impl.h
diff --git a/chrome/browser/sync/profile_sync_factory_impl.h b/chrome/browser/sync/profile_sync_factory_impl.h
index 87d3102a11e81a1683897b7badd73785ac285e23..426dd8708136410b0a288612b42e77fc69d90af3 100644
--- a/chrome/browser/sync/profile_sync_factory_impl.h
+++ b/chrome/browser/sync/profile_sync_factory_impl.h
@@ -9,6 +9,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "chrome/browser/sync/profile_sync_factory.h"
class CommandLine;
@@ -21,75 +22,76 @@ class ProfileSyncFactoryImpl : public ProfileSyncFactory {
// ProfileSyncFactory interface.
virtual ProfileSyncService* CreateProfileSyncService(
- const std::string& cros_user);
+ const std::string& cros_user) OVERRIDE;
- virtual void RegisterDataTypes(ProfileSyncService* pss);
+ virtual void RegisterDataTypes(ProfileSyncService* pss) OVERRIDE;
virtual browser_sync::DataTypeManager* CreateDataTypeManager(
browser_sync::SyncBackendHost* backend,
- const browser_sync::DataTypeController::TypeMap* controllers);
+ const browser_sync::DataTypeController::TypeMap* controllers) OVERRIDE;
virtual browser_sync::GenericChangeProcessor* CreateGenericChangeProcessor(
ProfileSyncService* profile_sync_service,
browser_sync::UnrecoverableErrorHandler* error_handler,
- const base::WeakPtr<SyncableService>& local_service);
+ const base::WeakPtr<SyncableService>& local_service) OVERRIDE;
- virtual browser_sync::SharedChangeProcessor* CreateSharedChangeProcessor();
+ virtual browser_sync::SharedChangeProcessor*
+ CreateSharedChangeProcessor() OVERRIDE;
virtual SyncComponents CreateAppSyncComponents(
ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual base::WeakPtr<SyncableService> GetAutofillProfileSyncableService(
- WebDataService* web_data_service) const;
+ WebDataService* web_data_service) const OVERRIDE;
virtual base::WeakPtr<SyncableService> GetAutocompleteSyncableService(
- WebDataService* web_data_service) const;
+ WebDataService* web_data_service) const OVERRIDE;
virtual SyncComponents CreateBookmarkSyncComponents(
ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual SyncComponents CreateExtensionOrAppSettingSyncComponents(
// Either EXTENSION_SETTING or APP_SETTING.
syncable::ModelType type,
SyncableService* settings_service,
ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual SyncComponents CreateExtensionSyncComponents(
ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual SyncComponents CreatePasswordSyncComponents(
ProfileSyncService* profile_sync_service,
PasswordStore* password_store,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual SyncComponents CreatePreferenceSyncComponents(
ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual SyncComponents CreateThemeSyncComponents(
ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual SyncComponents CreateTypedUrlSyncComponents(
ProfileSyncService* profile_sync_service,
history::HistoryBackend* history_backend,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual SyncComponents CreateSessionSyncComponents(
ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual SyncComponents CreateSearchEngineSyncComponents(
ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
virtual SyncComponents CreateAppNotificationSyncComponents(
ProfileSyncService* profile_sync_service,
- browser_sync::UnrecoverableErrorHandler* error_handler);
+ browser_sync::UnrecoverableErrorHandler* error_handler) OVERRIDE;
private:
Profile* profile_;
« no previous file with comments | « chrome/browser/sync/notifier/p2p_notifier.h ('k') | chrome/browser/sync/profile_sync_service_autofill_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698