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

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

Issue 669603008: Standardize usage of virtual/override/final in storage/ (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
« no previous file with comments | « storage/browser/fileapi/sandbox_origin_database.h ('k') | storage/browser/fileapi/sandbox_quota_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/sandbox_prioritized_origin_database.h
diff --git a/storage/browser/fileapi/sandbox_prioritized_origin_database.h b/storage/browser/fileapi/sandbox_prioritized_origin_database.h
index 4309bb39237f0b21eadc8b59630cb2d26ae8bb63..c1b6a80c5ca92db8b6707a071ae10db60712e42c 100644
--- a/storage/browser/fileapi/sandbox_prioritized_origin_database.h
+++ b/storage/browser/fileapi/sandbox_prioritized_origin_database.h
@@ -30,7 +30,7 @@ class STORAGE_EXPORT_PRIVATE SandboxPrioritizedOriginDatabase
SandboxPrioritizedOriginDatabase(const base::FilePath& file_system_directory,
leveldb::Env* env_override);
- virtual ~SandboxPrioritizedOriginDatabase();
+ ~SandboxPrioritizedOriginDatabase() override;
// Sets |origin| as primary origin in this database (e.g. may
// allow faster access).
@@ -40,12 +40,12 @@ class STORAGE_EXPORT_PRIVATE SandboxPrioritizedOriginDatabase
std::string GetPrimaryOrigin();
// SandboxOriginDatabaseInterface overrides.
- 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;
+ bool HasOriginPath(const std::string& origin) override;
+ bool GetPathForOrigin(const std::string& origin,
+ base::FilePath* directory) override;
+ bool RemovePathForOrigin(const std::string& origin) override;
+ bool ListAllOrigins(std::vector<OriginRecord>* origins) override;
+ void DropDatabase() override;
const base::FilePath& primary_origin_file() const {
return primary_origin_file_;
« no previous file with comments | « storage/browser/fileapi/sandbox_origin_database.h ('k') | storage/browser/fileapi/sandbox_quota_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698