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

Unified Diff: content/browser/renderer_host/legacy_render_widget_host_win.h

Issue 1091093006: Update {virtual,override} to follow C++11 style in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back out some webrtc files. Created 5 years, 8 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/renderer_host/legacy_render_widget_host_win.h
diff --git a/content/browser/renderer_host/legacy_render_widget_host_win.h b/content/browser/renderer_host/legacy_render_widget_host_win.h
index e3006a151b65bc9cca7b747a2841a15c9c5b552b..a1e952daf070b45de70f8f4005af8cba5fdb9f4b 100644
--- a/content/browser/renderer_host/legacy_render_widget_host_win.h
+++ b/content/browser/renderer_host/legacy_render_widget_host_win.h
@@ -107,11 +107,11 @@ class CONTENT_EXPORT LegacyRenderWidgetHostHWND
}
protected:
- virtual void OnFinalMessage(HWND hwnd) override;
+ void OnFinalMessage(HWND hwnd) override;
private:
LegacyRenderWidgetHostHWND(HWND parent);
- ~LegacyRenderWidgetHostHWND();
+ ~LegacyRenderWidgetHostHWND() override;
bool Init();

Powered by Google App Engine
This is Rietveld 408576698