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

Unified Diff: chrome/browser/sync/internal_api/write_node.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/internal_api/write_node.h
diff --git a/chrome/browser/sync/internal_api/write_node.h b/chrome/browser/sync/internal_api/write_node.h
index d4fd8646902e624b52736fe68f459473c8de110b..487e5be45e9cf16f6c1112ae50f858fe655af8d3 100644
--- a/chrome/browser/sync/internal_api/write_node.h
+++ b/chrome/browser/sync/internal_api/write_node.h
@@ -10,6 +10,7 @@
#include <vector>
#include "base/basictypes.h"
+#include "base/compiler_specific.h"
#include "chrome/browser/sync/internal_api/base_node.h"
#include "chrome/browser/sync/syncable/model_type.h"
@@ -53,9 +54,9 @@ class WriteNode : public BaseNode {
// populate the node.
// BaseNode implementation.
- virtual bool InitByIdLookup(int64 id);
+ virtual bool InitByIdLookup(int64 id) OVERRIDE;
virtual bool InitByClientTagLookup(syncable::ModelType model_type,
- const std::string& tag);
+ const std::string& tag) OVERRIDE;
// Create a new node with the specified parent and predecessor. |model_type|
// dictates the type of the item, and controls which EntitySpecifics proto
@@ -162,9 +163,9 @@ class WriteNode : public BaseNode {
syncable::MutableEntry* entry);
// Implementation of BaseNode's abstract virtual accessors.
- virtual const syncable::Entry* GetEntry() const;
+ virtual const syncable::Entry* GetEntry() const OVERRIDE;
- virtual const BaseTransaction* GetTransaction() const;
+ virtual const BaseTransaction* GetTransaction() const OVERRIDE;
private:
friend class browser_sync::TestBookmarkModelAssociator;

Powered by Google App Engine
This is Rietveld 408576698