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

Unified Diff: android_webview/browser/renderer_host/aw_render_view_host_ext.h

Issue 882883007: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/renderer_host/aw_render_view_host_ext.h
diff --git a/android_webview/browser/renderer_host/aw_render_view_host_ext.h b/android_webview/browser/renderer_host/aw_render_view_host_ext.h
index a0d426bda6dd26c93fc4fcc61df5f40dc8274752..3abd8d84b6b0a5c6790398b313121b6802937236 100644
--- a/android_webview/browser/renderer_host/aw_render_view_host_ext.h
+++ b/android_webview/browser/renderer_host/aw_render_view_host_ext.h
@@ -45,7 +45,7 @@ class AwRenderViewHostExt : public content::WebContentsObserver,
// as it internally handles RenderViewHost instances changing underneath us.
AwRenderViewHostExt(
AwRenderViewHostExtClient* client, content::WebContents* contents);
- virtual ~AwRenderViewHostExt();
+ ~AwRenderViewHostExt() override;
// |result| will be invoked with the outcome of the request.
typedef base::Callback<void(bool)> DocumentHasImagesResult;
@@ -82,13 +82,12 @@ class AwRenderViewHostExt : public content::WebContentsObserver,
private:
// content::WebContentsObserver implementation.
- virtual void RenderViewCreated(content::RenderViewHost* view_host) override;
- virtual void RenderProcessGone(base::TerminationStatus status) override;
- virtual void DidNavigateAnyFrame(
- content::RenderFrameHost* render_frame_host,
- const content::LoadCommittedDetails& details,
- const content::FrameNavigateParams& params) override;
- virtual bool OnMessageReceived(const IPC::Message& message) override;
+ void RenderViewCreated(content::RenderViewHost* view_host) override;
+ void RenderProcessGone(base::TerminationStatus status) override;
+ void DidNavigateAnyFrame(content::RenderFrameHost* render_frame_host,
+ const content::LoadCommittedDetails& details,
+ const content::FrameNavigateParams& params) override;
+ bool OnMessageReceived(const IPC::Message& message) override;
void OnDocumentHasImagesResponse(int msg_id, bool has_images);
void OnUpdateHitTestData(const AwHitTestData& hit_test_data);
« no previous file with comments | « no previous file | android_webview/browser/renderer_host/aw_resource_dispatcher_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698