| 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();
|
|
|
|
|