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

Unified Diff: content/browser/dom_storage/local_storage_database_adapter.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/local_storage_database_adapter.h
diff --git a/content/browser/dom_storage/local_storage_database_adapter.h b/content/browser/dom_storage/local_storage_database_adapter.h
index 1298d9c3e30ac48fd103d9311d72538046c91a75..c758dd4426d08b96d02567942d6e4167afd1ae38 100644
--- a/content/browser/dom_storage/local_storage_database_adapter.h
+++ b/content/browser/dom_storage/local_storage_database_adapter.h
@@ -23,11 +23,11 @@ class CONTENT_EXPORT LocalStorageDatabaseAdapter :
public:
explicit LocalStorageDatabaseAdapter(const base::FilePath& path);
virtual ~LocalStorageDatabaseAdapter();
- virtual void ReadAllValues(DOMStorageValuesMap* result) OVERRIDE;
+ virtual void ReadAllValues(DOMStorageValuesMap* result) override;
virtual bool CommitChanges(bool clear_all_first,
- const DOMStorageValuesMap& changes) OVERRIDE;
- virtual void DeleteFiles() OVERRIDE;
- virtual void Reset() OVERRIDE;
+ const DOMStorageValuesMap& changes) override;
+ virtual void DeleteFiles() override;
+ virtual void Reset() override;
protected:
// Constructor that uses an in-memory sqlite database, for testing.
« no previous file with comments | « content/browser/dom_storage/dom_storage_task_runner.h ('k') | content/browser/dom_storage/session_storage_database_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698