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

Unified Diff: chrome/browser/sync/glue/data_type_manager_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/glue/data_type_manager_impl.h
diff --git a/chrome/browser/sync/glue/data_type_manager_impl.h b/chrome/browser/sync/glue/data_type_manager_impl.h
index 97d6ea975dca14a22c3453d9797b1fdf3c78ca4e..8c79654c3a9e259c0abdd1dac6fe3d49c22e35ef 100644
--- a/chrome/browser/sync/glue/data_type_manager_impl.h
+++ b/chrome/browser/sync/glue/data_type_manager_impl.h
@@ -13,6 +13,7 @@
#include <vector>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
#include "base/task.h"
#include "base/time.h"
@@ -30,14 +31,15 @@ class DataTypeManagerImpl : public DataTypeManager {
// DataTypeManager interface.
virtual void Configure(const TypeSet& desired_types,
- sync_api::ConfigureReason reason);
+ sync_api::ConfigureReason reason) OVERRIDE;
// Needed only for backend migration.
- virtual void ConfigureWithoutNigori(const TypeSet& desired_types,
- sync_api::ConfigureReason reason);
+ virtual void ConfigureWithoutNigori(
+ const TypeSet& desired_types,
+ sync_api::ConfigureReason reason) OVERRIDE;
- virtual void Stop();
- virtual State state();
+ virtual void Stop() OVERRIDE;
+ virtual State state() OVERRIDE;
private:
// Starts the next data type in the kStartOrder list, indicated by
« no previous file with comments | « chrome/browser/sync/glue/bookmark_model_associator.h ('k') | chrome/browser/sync/glue/extension_data_type_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698