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

Unified Diff: chrome/browser/sync/internal_api/read_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/read_node.h
diff --git a/chrome/browser/sync/internal_api/read_node.h b/chrome/browser/sync/internal_api/read_node.h
index ad68cfc08d82d527ea2d1702af00a9c52b2ae707..5e716d367e53d0063e189d6f0f8a6147fe3a7cc7 100644
--- a/chrome/browser/sync/internal_api/read_node.h
+++ b/chrome/browser/sync/internal_api/read_node.h
@@ -9,6 +9,7 @@
#include <string>
#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"
@@ -27,9 +28,9 @@ class ReadNode : 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;
// There is always a root node, so this can't fail. The root node is
// never mutable, so root lookup is only possible on a ReadNode.
@@ -41,8 +42,8 @@ class ReadNode : public BaseNode {
bool InitByTagLookup(const std::string& tag);
// Implementation of BaseNode's abstract virtual accessors.
- virtual const syncable::Entry* GetEntry() const;
- virtual const BaseTransaction* GetTransaction() const;
+ virtual const syncable::Entry* GetEntry() const OVERRIDE;
+ virtual const BaseTransaction* GetTransaction() const OVERRIDE;
protected:
ReadNode();
« no previous file with comments | « chrome/browser/sync/internal_api/debug_info_event_listener.h ('k') | chrome/browser/sync/internal_api/read_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698