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

Unified Diff: chrome/browser/sync/glue/theme_model_associator.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/theme_model_associator.h
diff --git a/chrome/browser/sync/glue/theme_model_associator.h b/chrome/browser/sync/glue/theme_model_associator.h
index 2ea2704131de14420aa5cb76a41e7ce8ed30e204..9f54d5aa88e4a0c1f6cec75639b0896ce726cba7 100644
--- a/chrome/browser/sync/glue/theme_model_associator.h
+++ b/chrome/browser/sync/glue/theme_model_associator.h
@@ -7,6 +7,7 @@
#pragma once
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "chrome/browser/sync/glue/model_associator.h"
#include "chrome/browser/sync/syncable/model_type.h"
@@ -25,14 +26,14 @@ class ThemeModelAssociator : public AssociatorInterface {
static syncable::ModelType model_type() { return syncable::THEMES; }
// AssociatorInterface implementation.
- virtual bool AssociateModels(SyncError* error);
- virtual bool DisassociateModels(SyncError* error);
- virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes);
- virtual void AbortAssociation() {
+ virtual bool AssociateModels(SyncError* error) OVERRIDE;
+ virtual bool DisassociateModels(SyncError* error) OVERRIDE;
+ virtual bool SyncModelHasUserCreatedNodes(bool* has_nodes) OVERRIDE;
+ virtual void AbortAssociation() OVERRIDE {
// No implementation needed, this associator runs on the main
// thread.
}
- virtual bool CryptoReadyIfNecessary();
+ virtual bool CryptoReadyIfNecessary() OVERRIDE;
private:
ProfileSyncService* sync_service_;
« no previous file with comments | « chrome/browser/sync/glue/theme_data_type_controller.h ('k') | chrome/browser/sync/glue/typed_url_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698