| Index: android_webview/native/aw_settings.h
|
| diff --git a/android_webview/native/aw_settings.h b/android_webview/native/aw_settings.h
|
| index 141320dfc539b1ad835162ec5c4fe532be70ff86..581a6cde4a58abdcee960bf1b779d1e9401cebb7 100644
|
| --- a/android_webview/native/aw_settings.h
|
| +++ b/android_webview/native/aw_settings.h
|
| @@ -25,7 +25,7 @@ class AwSettings : public content::WebContentsObserver {
|
| static AwSettings* FromWebContents(content::WebContents* web_contents);
|
|
|
| AwSettings(JNIEnv* env, jobject obj, content::WebContents* web_contents);
|
| - virtual ~AwSettings();
|
| + ~AwSettings() override;
|
|
|
| // Called from Java. Methods with "Locked" suffix require that the settings
|
| // access lock is held during their execution.
|
| @@ -46,9 +46,8 @@ class AwSettings : public content::WebContentsObserver {
|
| void UpdateEverything();
|
|
|
| // WebContentsObserver overrides:
|
| - virtual void RenderViewCreated(
|
| - content::RenderViewHost* render_view_host) override;
|
| - virtual void WebContentsDestroyed() override;
|
| + void RenderViewCreated(content::RenderViewHost* render_view_host) override;
|
| + void WebContentsDestroyed() override;
|
|
|
| bool renderer_prefs_initialized_;
|
|
|
|
|