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

Unified Diff: net/disk_cache/blockfile/mapped_file_unittest.cc

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment 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 | « net/disk_cache/blockfile/index_table_v3_unittest.cc ('k') | net/disk_cache/blockfile/sparse_control.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/blockfile/mapped_file_unittest.cc
diff --git a/net/disk_cache/blockfile/mapped_file_unittest.cc b/net/disk_cache/blockfile/mapped_file_unittest.cc
index 8b3a1d0f990227c27f6a16bde0141c3d73ceac75..8093e9a14b191d5c27485675e0202a2ec21c2969 100644
--- a/net/disk_cache/blockfile/mapped_file_unittest.cc
+++ b/net/disk_cache/blockfile/mapped_file_unittest.cc
@@ -23,7 +23,7 @@ class FileCallbackTest: public disk_cache::FileIOCallback {
}
virtual ~FileCallbackTest() {}
- virtual void OnFileIOComplete(int bytes_copied) OVERRIDE;
+ virtual void OnFileIOComplete(int bytes_copied) override;
private:
int id_;
@@ -48,9 +48,9 @@ class TestFileBlock : public disk_cache::FileBlock {
virtual ~TestFileBlock() {}
// FileBlock interface.
- virtual void* buffer() const OVERRIDE { return const_cast<char*>(buffer_); }
- virtual size_t size() const OVERRIDE { return sizeof(buffer_); }
- virtual int offset() const OVERRIDE { return 1024; }
+ virtual void* buffer() const override { return const_cast<char*>(buffer_); }
+ virtual size_t size() const override { return sizeof(buffer_); }
+ virtual int offset() const override { return 1024; }
private:
char buffer_[20];
« no previous file with comments | « net/disk_cache/blockfile/index_table_v3_unittest.cc ('k') | net/disk_cache/blockfile/sparse_control.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698