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

Unified Diff: android_webview/native/aw_settings.h

Issue 893343002: 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: 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_;
« no previous file with comments | « android_webview/native/aw_quota_manager_bridge_impl.h ('k') | android_webview/native/aw_web_contents_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698