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

Unified Diff: chrome/browser/ui/search/instant_tab.h

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/search/instant_tab.h
diff --git a/chrome/browser/ui/search/instant_tab.h b/chrome/browser/ui/search/instant_tab.h
index 4d644c62c0b6d67cad23b5af0858e86e3a3dcb4f..af0c26e1d515e63c3cb678eccdebea9256b2d6dc 100644
--- a/chrome/browser/ui/search/instant_tab.h
+++ b/chrome/browser/ui/search/instant_tab.h
@@ -16,7 +16,7 @@ class Profile;
class InstantTab : public InstantPage {
public:
InstantTab(InstantPage::Delegate* delegate, Profile* profile);
- virtual ~InstantTab();
+ ~InstantTab() override;
// Start observing |contents| for messages. Sends a message to determine if
// the page supports the Instant API.
@@ -27,7 +27,7 @@ class InstantTab : public InstantPage {
private:
// Overridden from InstantPage:
- virtual bool ShouldProcessAboutToNavigateMainFrame() override;
+ bool ShouldProcessAboutToNavigateMainFrame() override;
DISALLOW_COPY_AND_ASSIGN(InstantTab);
};

Powered by Google App Engine
This is Rietveld 408576698