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

Unified Diff: chrome/browser/extensions/api/image_writer_private/operation_unittest.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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/browser/extensions/api/image_writer_private/operation_unittest.cc
diff --git a/chrome/browser/extensions/api/image_writer_private/operation_unittest.cc b/chrome/browser/extensions/api/image_writer_private/operation_unittest.cc
index 9dc7c0c05be94c48afc5e44809d31bd6f7e59acd..e2932365c999f0ed9c7125a993e1cb886905c5dc 100644
--- a/chrome/browser/extensions/api/image_writer_private/operation_unittest.cc
+++ b/chrome/browser/extensions/api/image_writer_private/operation_unittest.cc
@@ -37,7 +37,7 @@ class OperationForTest : public Operation {
const std::string& device_path)
: Operation(manager_, extension_id, device_path) {}
- virtual void StartImpl() OVERRIDE {}
+ virtual void StartImpl() override {}
// Expose internal stages for testing.
void Unzip(const base::Closure& continuation) {
@@ -67,7 +67,7 @@ class ImageWriterOperationTest : public ImageWriterUnitTestBase {
protected:
ImageWriterOperationTest()
: profile_(new TestingProfile), manager_(profile_.get()) {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
ImageWriterUnitTestBase::SetUp();
// Create the zip file.
@@ -88,7 +88,7 @@ class ImageWriterOperationTest : public ImageWriterUnitTestBase {
operation_->SetImagePath(test_utils_.GetImagePath());
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
// Ensure all callbacks have been destroyed and cleanup occurs.
operation_->Cancel();

Powered by Google App Engine
This is Rietveld 408576698