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

Unified Diff: content/browser/android/interstitial_page_delegate_android.h

Issue 897773002: 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: content/browser/android/interstitial_page_delegate_android.h
diff --git a/content/browser/android/interstitial_page_delegate_android.h b/content/browser/android/interstitial_page_delegate_android.h
index 5121be161f558331ed08ef1656429efa15d98967..bd28d381c9dfb4d0d166a746959780d8d45d11f2 100644
--- a/content/browser/android/interstitial_page_delegate_android.h
+++ b/content/browser/android/interstitial_page_delegate_android.h
@@ -26,7 +26,7 @@ class InterstitialPageDelegateAndroid : public InterstitialPageDelegate {
InterstitialPageDelegateAndroid(JNIEnv* env,
jobject obj,
const std::string& html_content);
- virtual ~InterstitialPageDelegateAndroid();
+ ~InterstitialPageDelegateAndroid() override;
void set_interstitial_page(InterstitialPage* page) { page_ = page; }
@@ -35,10 +35,10 @@ class InterstitialPageDelegateAndroid : public InterstitialPageDelegate {
void DontProceed(JNIEnv* env, jobject obj);
// Implementation of InterstitialPageDelegate
- virtual std::string GetHTMLContents() override;
- virtual void OnProceed() override;
- virtual void OnDontProceed() override;
- virtual void CommandReceived(const std::string& command) override;
+ std::string GetHTMLContents() override;
+ void OnProceed() override;
+ void OnDontProceed() override;
+ void CommandReceived(const std::string& command) override;
static bool RegisterInterstitialPageDelegateAndroid(JNIEnv* env);

Powered by Google App Engine
This is Rietveld 408576698