diff options
author | mohan.reddy <mohan.reddy@samsung.com> | 2014-10-06 22:54:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-07 05:54:52 +0000 |
commit | e1177d0e38056ce91a8ef0fccc5bccd97a5bbb0d (patch) | |
tree | da2a36fc1738d2e7ad50d7c6c0ce9a17b2c1a2cd /content/browser/fileapi/recursive_operation_delegate_unittest.cc | |
parent | d7f545eacae6e1456c3d7e78c38c5a68239c453f (diff) | |
download | chromium_src-e1177d0e38056ce91a8ef0fccc5bccd97a5bbb0d.zip chromium_src-e1177d0e38056ce91a8ef0fccc5bccd97a5bbb0d.tar.gz chromium_src-e1177d0e38056ce91a8ef0fccc5bccd97a5bbb0d.tar.bz2 |
Replacing the OVERRIDE with override and FINAL with final in content/browser/fileapi
This step is a giant search and replace for OVERRIDE and FINAL to
replace them with their lowercase versions.
BUG=417463
Review URL: https://codereview.chromium.org/623933003
Cr-Commit-Position: refs/heads/master@{#298389}
Diffstat (limited to 'content/browser/fileapi/recursive_operation_delegate_unittest.cc')
-rw-r--r-- | content/browser/fileapi/recursive_operation_delegate_unittest.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/content/browser/fileapi/recursive_operation_delegate_unittest.cc b/content/browser/fileapi/recursive_operation_delegate_unittest.cc index 3d955cc..58e935e 100644 --- a/content/browser/fileapi/recursive_operation_delegate_unittest.cc +++ b/content/browser/fileapi/recursive_operation_delegate_unittest.cc @@ -50,16 +50,16 @@ class LoggingRecursiveOperation : public storage::RecursiveOperationDelegate { const std::vector<LogEntry>& log_entries() const { return log_entries_; } // RecursiveOperationDelegate overrides. - virtual void Run() OVERRIDE { + virtual void Run() override { NOTREACHED(); } - virtual void RunRecursively() OVERRIDE { + virtual void RunRecursively() override { StartRecursiveOperation(root_, callback_); } virtual void ProcessFile(const FileSystemURL& url, - const StatusCallback& callback) OVERRIDE { + const StatusCallback& callback) override { RecordLogEntry(LogEntry::PROCESS_FILE, url); operation_runner()->GetMetadata( url, @@ -68,13 +68,13 @@ class LoggingRecursiveOperation : public storage::RecursiveOperationDelegate { } virtual void ProcessDirectory(const FileSystemURL& url, - const StatusCallback& callback) OVERRIDE { + const StatusCallback& callback) override { RecordLogEntry(LogEntry::PROCESS_DIRECTORY, url); callback.Run(base::File::FILE_OK); } virtual void PostProcessDirectory(const FileSystemURL& url, - const StatusCallback& callback) OVERRIDE { + const StatusCallback& callback) override { RecordLogEntry(LogEntry::POST_PROCESS_DIRECTORY, url); callback.Run(base::File::FILE_OK); } @@ -132,12 +132,12 @@ void CallCancelLater(storage::RecursiveOperationDelegate* operation, class RecursiveOperationDelegateTest : public testing::Test { protected: - virtual void SetUp() OVERRIDE { + virtual void SetUp() override { EXPECT_TRUE(base_.CreateUniqueTempDir()); sandbox_file_system_.SetUp(base_.path().AppendASCII("filesystem")); } - virtual void TearDown() OVERRIDE { + virtual void TearDown() override { sandbox_file_system_.TearDown(); } |