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

Unified Diff: content/public/test/test_file_error_injector.cc

Issue 629203002: Replace OVERRIDE and FINAL with override and final in content/public/[a-s]* (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 | « content/public/test/test_browser_thread.cc ('k') | content/public/test/test_file_system_backend.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_file_error_injector.cc
diff --git a/content/public/test/test_file_error_injector.cc b/content/public/test/test_file_error_injector.cc
index 440156286b0bb90fb85290fafcdcee7fbd7b7c61..069c6234454fd67fd74d1679a0a224401a73d08a 100644
--- a/content/public/test/test_file_error_injector.cc
+++ b/content/public/test/test_file_error_injector.cc
@@ -42,17 +42,17 @@ class DownloadFileWithErrors: public DownloadFileImpl {
virtual ~DownloadFileWithErrors();
- virtual void Initialize(const InitializeCallback& callback) OVERRIDE;
+ virtual void Initialize(const InitializeCallback& callback) override;
// DownloadFile interface.
virtual DownloadInterruptReason AppendDataToFile(
- const char* data, size_t data_len) OVERRIDE;
+ const char* data, size_t data_len) override;
virtual void RenameAndUniquify(
const base::FilePath& full_path,
- const RenameCompletionCallback& callback) OVERRIDE;
+ const RenameCompletionCallback& callback) override;
virtual void RenameAndAnnotate(
const base::FilePath& full_path,
- const RenameCompletionCallback& callback) OVERRIDE;
+ const RenameCompletionCallback& callback) override;
private:
// Error generating helper.
@@ -265,7 +265,7 @@ class DownloadFileWithErrorsFactory : public DownloadFileFactory {
bool calculate_hash,
scoped_ptr<ByteStreamReader> stream,
const net::BoundNetLog& bound_net_log,
- base::WeakPtr<DownloadDestinationObserver> observer) OVERRIDE;
+ base::WeakPtr<DownloadDestinationObserver> observer) override;
bool AddError(
const TestFileErrorInjector::FileErrorInfo& error_info);
« no previous file with comments | « content/public/test/test_browser_thread.cc ('k') | content/public/test/test_file_system_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698