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

Unified Diff: chrome/utility/image_writer/image_writer_unittest.cc

Issue 679273002: Standardize usage of virtual/override/final specifiers. (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
Index: chrome/utility/image_writer/image_writer_unittest.cc
diff --git a/chrome/utility/image_writer/image_writer_unittest.cc b/chrome/utility/image_writer/image_writer_unittest.cc
index 69439e9c654ca2f4d36a2aa08bbd401ce978a9a4..8757f0d552ce84e563ef27da5686b24b91be72ea 100644
--- a/chrome/utility/image_writer/image_writer_unittest.cc
+++ b/chrome/utility/image_writer/image_writer_unittest.cc
@@ -27,14 +27,14 @@ const int kTestPattern = 0x55555555;
class ImageWriterUtilityTest : public testing::Test {
protected:
- virtual void SetUp() override {
+ void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.path(), &image_path_));
ASSERT_TRUE(
base::CreateTemporaryFileInDir(temp_dir_.path(), &device_path_));
}
- virtual void TearDown() override {}
+ void TearDown() override {}
void FillFile(const base::FilePath& path, int pattern) {
scoped_ptr<char[]> buffer(new char[kTestFileSize]);
« no previous file with comments | « chrome/utility/extensions/unpacker_unittest.cc ('k') | chrome/utility/importer/bookmark_html_reader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698