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

Unified Diff: storage/browser/fileapi/sandbox_file_system_backend_delegate.cc

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_file_system_backend_delegate.cc
diff --git a/storage/browser/fileapi/sandbox_file_system_backend_delegate.cc b/storage/browser/fileapi/sandbox_file_system_backend_delegate.cc
index a5b1f63d8b4e385861f03211873a3a072916c695..d68ba2c3adac050ea1b96ddc52569135f6ec4714 100644
--- a/storage/browser/fileapi/sandbox_file_system_backend_delegate.cc
+++ b/storage/browser/fileapi/sandbox_file_system_backend_delegate.cc
@@ -94,11 +94,11 @@ class ObfuscatedOriginEnumerator
}
virtual ~ObfuscatedOriginEnumerator() {}
- virtual GURL Next() OVERRIDE {
+ virtual GURL Next() override {
return enum_->Next();
}
- virtual bool HasFileSystemType(FileSystemType type) const OVERRIDE {
+ virtual bool HasFileSystemType(FileSystemType type) const override {
return enum_->HasTypeDirectory(
SandboxFileSystemBackendDelegate::GetTypeString(type));
}

Powered by Google App Engine
This is Rietveld 408576698