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

Unified Diff: chrome/renderer/chrome_mock_render_thread.h

Issue 663333002: Standardize usage of virtual/override/final in chrome/renderer/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/renderer/chrome_render_frame_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/chrome_mock_render_thread.h
diff --git a/chrome/renderer/chrome_mock_render_thread.h b/chrome/renderer/chrome_mock_render_thread.h
index b17ef4da304235edbd26e298d18e473e5c4ceca1..ea3a1e9eb8382d5868deb9c2b08f177ca93c1376 100644
--- a/chrome/renderer/chrome_mock_render_thread.h
+++ b/chrome/renderer/chrome_mock_render_thread.h
@@ -28,11 +28,10 @@ struct PrintMsg_Print_Params;
class ChromeMockRenderThread : public content::MockRenderThread {
public:
ChromeMockRenderThread();
- virtual ~ChromeMockRenderThread();
+ ~ChromeMockRenderThread() override;
// content::RenderThread overrides.
- virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy()
- override;
+ scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy() override;
//////////////////////////////////////////////////////////////////////////
// The following functions are called by the test itself.
@@ -59,7 +58,7 @@ class ChromeMockRenderThread : public content::MockRenderThread {
private:
// Overrides base class implementation to add custom handling for
// print and extensions.
- virtual bool OnMessageReceived(const IPC::Message& msg) override;
+ bool OnMessageReceived(const IPC::Message& msg) override;
#if defined(ENABLE_EXTENSIONS)
// The callee expects to be returned a valid channel_id.
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/renderer/chrome_render_frame_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698