| 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);
|
|
|
|
|