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

Unified Diff: content/browser/dom_storage/session_storage_namespace_impl.h

Issue 633843002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[dom_storage|gamepad|… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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: content/browser/dom_storage/session_storage_namespace_impl.h
diff --git a/content/browser/dom_storage/session_storage_namespace_impl.h b/content/browser/dom_storage/session_storage_namespace_impl.h
index ad010857243b79a3f7977978f45a97c5aec110ef..cadb23924381e34c4e196a235724fb82185ee555 100644
--- a/content/browser/dom_storage/session_storage_namespace_impl.h
+++ b/content/browser/dom_storage/session_storage_namespace_impl.h
@@ -40,22 +40,22 @@ class SessionStorageNamespaceImpl
SessionStorageNamespaceImpl* master_session_storage_namespace);
// SessionStorageNamespace implementation.
- virtual int64 id() const OVERRIDE;
- virtual const std::string& persistent_id() const OVERRIDE;
- virtual void SetShouldPersist(bool should_persist) OVERRIDE;
- virtual bool should_persist() const OVERRIDE;
+ virtual int64 id() const override;
+ virtual const std::string& persistent_id() const override;
+ virtual void SetShouldPersist(bool should_persist) override;
+ virtual bool should_persist() const override;
SessionStorageNamespaceImpl* Clone();
bool IsFromContext(DOMStorageContextWrapper* context);
- virtual void AddTransactionLogProcessId(int process_id) OVERRIDE;
- virtual void RemoveTransactionLogProcessId(int process_id) OVERRIDE;
+ virtual void AddTransactionLogProcessId(int process_id) override;
+ virtual void RemoveTransactionLogProcessId(int process_id) override;
virtual void Merge(bool actually_merge,
int process_id,
SessionStorageNamespace* other,
- const MergeResultCallback& callback) OVERRIDE;
- virtual bool IsAliasOf(SessionStorageNamespace* other) OVERRIDE;
- virtual SessionStorageNamespace* CreateAlias() OVERRIDE;
+ const MergeResultCallback& callback) override;
+ virtual bool IsAliasOf(SessionStorageNamespace* other) override;
+ virtual SessionStorageNamespace* CreateAlias() override;
private:
explicit SessionStorageNamespaceImpl(DOMStorageSession* clone);

Powered by Google App Engine
This is Rietveld 408576698