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

Unified Diff: content/common/file_system/webfilesystem_callback_dispatcher.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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/common/file_system/webfilesystem_callback_dispatcher.h
diff --git a/content/common/file_system/webfilesystem_callback_dispatcher.h b/content/common/file_system/webfilesystem_callback_dispatcher.h
index b8c1aac8336b02b396ed54a12eb202f5ed5d9ac2..fa951d5e193f4ac101f5ad5e82718638b9380c7e 100644
--- a/content/common/file_system/webfilesystem_callback_dispatcher.h
+++ b/content/common/file_system/webfilesystem_callback_dispatcher.h
@@ -22,17 +22,17 @@ class WebFileSystemCallbackDispatcher
WebKit::WebFileSystemCallbacks* callbacks);
// FileSystemCallbackDispatcher implementation
- virtual void DidSucceed();
+ virtual void DidSucceed() OVERRIDE;
virtual void DidReadMetadata(
const base::PlatformFileInfo& file_info,
- const FilePath& platform_path);
+ const FilePath& platform_path) OVERRIDE;
virtual void DidReadDirectory(
const std::vector<base::FileUtilProxy::Entry>& entries,
- bool has_more);
+ bool has_more) OVERRIDE;
virtual void DidOpenFileSystem(const std::string&,
- const GURL&);
- virtual void DidFail(base::PlatformFileError);
- virtual void DidWrite(int64 bytes, bool complete);
+ const GURL&) OVERRIDE;
+ virtual void DidFail(base::PlatformFileError) OVERRIDE;
+ virtual void DidWrite(int64 bytes, bool complete) OVERRIDE;
private:
WebKit::WebFileSystemCallbacks* callbacks_;
« no previous file with comments | « content/common/file_system/file_system_dispatcher.h ('k') | content/common/file_system/webfilewriter_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698