summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/api/image_writer_private/test_utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/api/image_writer_private/test_utils.cc')
-rw-r--r--chrome/browser/extensions/api/image_writer_private/test_utils.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/api/image_writer_private/test_utils.cc b/chrome/browser/extensions/api/image_writer_private/test_utils.cc
index 5cae145..7ef5bee 100644
--- a/chrome/browser/extensions/api/image_writer_private/test_utils.cc
+++ b/chrome/browser/extensions/api/image_writer_private/test_utils.cc
@@ -23,14 +23,14 @@ class ImageWriterFakeImageBurnerClient
virtual void SetEventHandlers(
const BurnFinishedHandler& burn_finished_handler,
- const BurnProgressUpdateHandler& burn_progress_update_handler) OVERRIDE {
+ const BurnProgressUpdateHandler& burn_progress_update_handler) override {
burn_finished_handler_ = burn_finished_handler;
burn_progress_update_handler_ = burn_progress_update_handler;
}
virtual void BurnImage(const std::string& from_path,
const std::string& to_path,
- const ErrorCallback& error_callback) OVERRIDE {
+ const ErrorCallback& error_callback) override {
base::MessageLoop::current()->PostTask(FROM_HERE,
base::Bind(burn_progress_update_handler_, to_path, 0, 100));
base::MessageLoop::current()->PostTask(FROM_HERE,