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

Unified Diff: chrome/browser/android/tab_android.h

Issue 884213005: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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/android/tab_android.h
diff --git a/chrome/browser/android/tab_android.h b/chrome/browser/android/tab_android.h
index 57c019b2d4337edabd2779aa0502deef8c31dfbd..182e79987522d4224209181bf26a43b5c114c544 100644
--- a/chrome/browser/android/tab_android.h
+++ b/chrome/browser/android/tab_android.h
@@ -71,7 +71,7 @@ class TabAndroid : public CoreTabHelperDelegate,
static void AttachTabHelpers(content::WebContents* web_contents);
TabAndroid(JNIEnv* env, jobject obj);
- virtual ~TabAndroid();
+ ~TabAndroid() override;
base::android::ScopedJavaLocalRef<jobject> GetJavaObject();
@@ -111,25 +111,25 @@ class TabAndroid : public CoreTabHelperDelegate,
// CoreTabHelperDelegate ----------------------------------------------------
- virtual void SwapTabContents(content::WebContents* old_contents,
- content::WebContents* new_contents,
- bool did_start_load,
- bool did_finish_load) override;
+ void SwapTabContents(content::WebContents* old_contents,
+ content::WebContents* new_contents,
+ bool did_start_load,
+ bool did_finish_load) override;
// Overridden from InstantServiceObserver:
void DefaultSearchProviderChanged() override;
// Overridden from SearchTabHelperDelegate:
- virtual void OnWebContentsInstantSupportDisabled(
+ void OnWebContentsInstantSupportDisabled(
const content::WebContents* web_contents) override;
// NotificationObserver -----------------------------------------------------
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
// FaviconTabHelperObserver -----------------------------------------------
- virtual void OnFaviconAvailable(const gfx::Image& image) override;
+ void OnFaviconAvailable(const gfx::Image& image) override;
// Methods called from Java via JNI -----------------------------------------
« no previous file with comments | « chrome/browser/android/signin/signin_manager_android.cc ('k') | chrome/browser/android/thumbnail/thumbnail.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698