| Index: chrome/browser/plugins/plugin_installer_unittest.cc
|
| diff --git a/chrome/browser/plugins/plugin_installer_unittest.cc b/chrome/browser/plugins/plugin_installer_unittest.cc
|
| index 359378e373ba40a046964ab93e5cf1fb45145ed6..468a6f73c425023e48cf3b7e8191016b54745276 100644
|
| --- a/chrome/browser/plugins/plugin_installer_unittest.cc
|
| +++ b/chrome/browser/plugins/plugin_installer_unittest.cc
|
| @@ -21,8 +21,8 @@ namespace {
|
| class PluginInstallerTest : public ChromeRenderViewHostTestHarness {
|
| public:
|
| PluginInstallerTest();
|
| - virtual void SetUp() OVERRIDE;
|
| - virtual void TearDown() OVERRIDE;
|
| + virtual void SetUp() override;
|
| + virtual void TearDown() override;
|
|
|
| PluginInstaller* installer() { return installer_.get(); }
|
|
|
| @@ -68,12 +68,12 @@ class TestPluginInstallerObserver : public PluginInstallerObserver {
|
| const std::string& download_error() const { return download_error_; }
|
|
|
| private:
|
| - virtual void DownloadStarted() OVERRIDE { download_started_ = true; }
|
| - virtual void DownloadFinished() OVERRIDE { download_finished_ = true; }
|
| - virtual void DownloadError(const std::string& message) OVERRIDE {
|
| + virtual void DownloadStarted() override { download_started_ = true; }
|
| + virtual void DownloadFinished() override { download_finished_ = true; }
|
| + virtual void DownloadError(const std::string& message) override {
|
| download_error_ = message;
|
| }
|
| - virtual void DownloadCancelled() OVERRIDE { download_cancelled_ = true; }
|
| + virtual void DownloadCancelled() override { download_cancelled_ = true; }
|
|
|
| bool download_started_;
|
| bool download_finished_;
|
|
|