diff options
author | mohan.reddy <mohan.reddy@samsung.com> | 2014-10-09 19:08:05 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-10 02:08:18 +0000 |
commit | 54170a07df0ff322b35a933a0604856d5594a1e8 (patch) | |
tree | 9b8e220bc7489b3006f8e92fc8f7cdc6a0d9883a /chrome/renderer/chrome_mock_render_thread.h | |
parent | f519af97a9fd1bc46f9d4151c9dd94ebe57b289d (diff) | |
download | chromium_src-54170a07df0ff322b35a933a0604856d5594a1e8.zip chromium_src-54170a07df0ff322b35a933a0604856d5594a1e8.tar.gz chromium_src-54170a07df0ff322b35a933a0604856d5594a1e8.tar.bz2 |
Replacing the OVERRIDE with override and in chrome/renderer
This step is a giant search and replace for OVERRIDE to
replace them with their lowercase versions.
BUG=417463
Review URL: https://codereview.chromium.org/630603003
Cr-Commit-Position: refs/heads/master@{#299042}
Diffstat (limited to 'chrome/renderer/chrome_mock_render_thread.h')
-rw-r--r-- | chrome/renderer/chrome_mock_render_thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/renderer/chrome_mock_render_thread.h b/chrome/renderer/chrome_mock_render_thread.h index 72a8f2a..9b5afaa 100644 --- a/chrome/renderer/chrome_mock_render_thread.h +++ b/chrome/renderer/chrome_mock_render_thread.h @@ -32,7 +32,7 @@ class ChromeMockRenderThread : public content::MockRenderThread { // content::RenderThread overrides. virtual scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy() - OVERRIDE; + override; ////////////////////////////////////////////////////////////////////////// // The following functions are called by the test itself. @@ -59,7 +59,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; + virtual bool OnMessageReceived(const IPC::Message& msg) override; // The callee expects to be returned a valid channel_id. void OnOpenChannelToExtension(int routing_id, |