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

Unified Diff: storage/browser/fileapi/sandbox_origin_database.h

Issue 624063003: Replacing the OVERRIDE with override and FINAL with final in storage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the error 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: storage/browser/fileapi/sandbox_origin_database.h
diff --git a/storage/browser/fileapi/sandbox_origin_database.h b/storage/browser/fileapi/sandbox_origin_database.h
index 21779d587e1457b6e40441dee566ada460eb57d3..3fef8d5257852c566fecd11dc002cce2ad520e14 100644
--- a/storage/browser/fileapi/sandbox_origin_database.h
+++ b/storage/browser/fileapi/sandbox_origin_database.h
@@ -36,12 +36,12 @@ class STORAGE_EXPORT_PRIVATE SandboxOriginDatabase
virtual ~SandboxOriginDatabase();
// SandboxOriginDatabaseInterface overrides.
- virtual bool HasOriginPath(const std::string& origin) OVERRIDE;
+ virtual bool HasOriginPath(const std::string& origin) override;
virtual bool GetPathForOrigin(const std::string& origin,
- base::FilePath* directory) OVERRIDE;
- virtual bool RemovePathForOrigin(const std::string& origin) OVERRIDE;
- virtual bool ListAllOrigins(std::vector<OriginRecord>* origins) OVERRIDE;
- virtual void DropDatabase() OVERRIDE;
+ base::FilePath* directory) override;
+ virtual bool RemovePathForOrigin(const std::string& origin) override;
+ virtual bool ListAllOrigins(std::vector<OriginRecord>* origins) override;
+ virtual void DropDatabase() override;
base::FilePath GetDatabasePath() const;
void RemoveDatabase();

Powered by Google App Engine
This is Rietveld 408576698