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

Unified Diff: chrome/browser/ui/apps/chrome_app_delegate.cc

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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/ui/apps/chrome_app_delegate.cc
diff --git a/chrome/browser/ui/apps/chrome_app_delegate.cc b/chrome/browser/ui/apps/chrome_app_delegate.cc
index 14307cc8a96b345a91ce4464e2a5d3a0658a83ba..dc563f8fa0166ab5edbed838089f91549e2fd239 100644
--- a/chrome/browser/ui/apps/chrome_app_delegate.cc
+++ b/chrome/browser/ui/apps/chrome_app_delegate.cc
@@ -81,7 +81,7 @@ class OpenURLFromTabBasedOnBrowserDefault
// Opens a URL when called with the result of if this is the default system
// browser or not.
- virtual void SetDefaultWebClientUIState(
+ void SetDefaultWebClientUIState(
ShellIntegration::DefaultWebClientUIState state) override {
Profile* profile =
Profile::FromBrowserContext(source_->GetBrowserContext());
@@ -101,7 +101,7 @@ class OpenURLFromTabBasedOnBrowserDefault
}
}
- virtual bool IsOwnedByWorker() override { return true; }
+ bool IsOwnedByWorker() override { return true; }
private:
scoped_ptr<content::WebContents> source_;
@@ -114,9 +114,9 @@ class ChromeAppDelegate::NewWindowContentsDelegate
: public content::WebContentsDelegate {
public:
NewWindowContentsDelegate() {}
- virtual ~NewWindowContentsDelegate() {}
+ ~NewWindowContentsDelegate() override {}
- virtual content::WebContents* OpenURLFromTab(
+ content::WebContents* OpenURLFromTab(
content::WebContents* source,
const content::OpenURLParams& params) override;

Powered by Google App Engine
This is Rietveld 408576698