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

Unified Diff: chrome/browser/ui/ash/launcher/launcher_app_tab_helper.h

Issue 686563002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/ash/launcher/launcher_app_tab_helper.h
diff --git a/chrome/browser/ui/ash/launcher/launcher_app_tab_helper.h b/chrome/browser/ui/ash/launcher/launcher_app_tab_helper.h
index d4ef078c67c9286e89405b1555c6776e4c61e6fa..cc4c67cb46ae410c0432c7938210f4e69ab58b36 100644
--- a/chrome/browser/ui/ash/launcher/launcher_app_tab_helper.h
+++ b/chrome/browser/ui/ash/launcher/launcher_app_tab_helper.h
@@ -16,12 +16,12 @@ class Profile;
class LauncherAppTabHelper : public ChromeLauncherController::AppTabHelper {
public:
explicit LauncherAppTabHelper(Profile* profile);
- virtual ~LauncherAppTabHelper();
+ ~LauncherAppTabHelper() override;
// AppTabHelper:
- virtual std::string GetAppID(content::WebContents* tab) override;
- virtual bool IsValidIDForCurrentUser(const std::string& id) override;
- virtual void SetCurrentUser(Profile* profile) override;
+ std::string GetAppID(content::WebContents* tab) override;
+ bool IsValidIDForCurrentUser(const std::string& id) override;
+ void SetCurrentUser(Profile* profile) override;
private:
Profile* profile_;

Powered by Google App Engine
This is Rietveld 408576698