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

Unified Diff: chrome/browser/plugins/plugin_observer.cc

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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
« no previous file with comments | « chrome/browser/plugins/plugin_observer.h ('k') | chrome/browser/plugins/plugin_prefs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugins/plugin_observer.cc
diff --git a/chrome/browser/plugins/plugin_observer.cc b/chrome/browser/plugins/plugin_observer.cc
index 5e49883bdf8916a23ac84c821d81365d9a2afe06..2572b29df9c3db6334fb66f11c5a68cb9b55fb4d 100644
--- a/chrome/browser/plugins/plugin_observer.cc
+++ b/chrome/browser/plugins/plugin_observer.cc
@@ -64,15 +64,15 @@ class ConfirmInstallDialogDelegate : public TabModalConfirmDialogDelegate,
scoped_ptr<PluginMetadata> plugin_metadata);
// TabModalConfirmDialogDelegate methods:
- virtual base::string16 GetTitle() OVERRIDE;
- virtual base::string16 GetDialogMessage() OVERRIDE;
- virtual base::string16 GetAcceptButtonTitle() OVERRIDE;
- virtual void OnAccepted() OVERRIDE;
- virtual void OnCanceled() OVERRIDE;
+ virtual base::string16 GetTitle() override;
+ virtual base::string16 GetDialogMessage() override;
+ virtual base::string16 GetAcceptButtonTitle() override;
+ virtual void OnAccepted() override;
+ virtual void OnCanceled() override;
// WeakPluginInstallerObserver methods:
- virtual void DownloadStarted() OVERRIDE;
- virtual void OnlyWeakObserversLeft() OVERRIDE;
+ virtual void DownloadStarted() override;
+ virtual void OnlyWeakObserversLeft() override;
private:
content::WebContents* web_contents_;
@@ -134,11 +134,11 @@ class ReloadPluginInfoBarDelegate : public ConfirmInfoBarDelegate {
virtual ~ReloadPluginInfoBarDelegate();
// ConfirmInfobarDelegate:
- virtual int GetIconID() const OVERRIDE;
- virtual base::string16 GetMessageText() const OVERRIDE;
- virtual int GetButtons() const OVERRIDE;
- virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
- virtual bool Accept() OVERRIDE;
+ virtual int GetIconID() const override;
+ virtual base::string16 GetMessageText() const override;
+ virtual int GetButtons() const override;
+ virtual base::string16 GetButtonLabel(InfoBarButton button) const override;
+ virtual bool Accept() override;
content::NavigationController* controller_;
base::string16 message_;
@@ -214,19 +214,19 @@ class PluginObserver::PluginPlaceholderHost : public PluginInstallerObserver {
}
// PluginInstallerObserver methods:
- virtual void DownloadStarted() OVERRIDE {
+ virtual void DownloadStarted() override {
observer_->Send(new ChromeViewMsg_StartedDownloadingPlugin(routing_id_));
}
- virtual void DownloadError(const std::string& msg) OVERRIDE {
+ virtual void DownloadError(const std::string& msg) override {
observer_->Send(new ChromeViewMsg_ErrorDownloadingPlugin(routing_id_, msg));
}
- virtual void DownloadCancelled() OVERRIDE {
+ virtual void DownloadCancelled() override {
observer_->Send(new ChromeViewMsg_CancelledDownloadingPlugin(routing_id_));
}
- virtual void DownloadFinished() OVERRIDE {
+ virtual void DownloadFinished() override {
observer_->Send(new ChromeViewMsg_FinishedDownloadingPlugin(routing_id_));
}
« no previous file with comments | « chrome/browser/plugins/plugin_observer.h ('k') | chrome/browser/plugins/plugin_prefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698