diff options
author | nasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-06 16:43:05 +0000 |
---|---|---|
committer | nasko@chromium.org <nasko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-06 16:43:05 +0000 |
commit | 98cf401af2325b159a2bd73ab47778f63d9f38fe (patch) | |
tree | b4821e4acddf380a1849366cf2dcdcc33acbc68f /content/public/test/mock_render_process_host.h | |
parent | a4ad2d6bd7f5aec30402d2f1fa89ae5462932ce8 (diff) | |
download | chromium_src-98cf401af2325b159a2bd73ab47778f63d9f38fe.zip chromium_src-98cf401af2325b159a2bd73ab47778f63d9f38fe.tar.gz chromium_src-98cf401af2325b159a2bd73ab47778f63d9f38fe.tar.bz2 |
Declare RenderProcessHost::GetHandle() method as const.
BUG=174407
Review URL: https://chromiumcodereview.appspot.com/12224015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180989 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/test/mock_render_process_host.h')
-rw-r--r-- | content/public/test/mock_render_process_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/public/test/mock_render_process_host.h b/content/public/test/mock_render_process_host.h index f07c9be..920746e 100644 --- a/content/public/test/mock_render_process_host.h +++ b/content/public/test/mock_render_process_host.h @@ -52,7 +52,7 @@ class MockRenderProcessHost : public RenderProcessHost { virtual bool FastShutdownIfPossible() OVERRIDE; virtual bool FastShutdownStarted() const OVERRIDE; virtual void DumpHandles() OVERRIDE; - virtual base::ProcessHandle GetHandle() OVERRIDE; + virtual base::ProcessHandle GetHandle() const OVERRIDE; virtual TransportDIB* GetTransportDIB(TransportDIB::Id dib_id) OVERRIDE; virtual int GetID() const OVERRIDE; virtual bool HasConnection() const OVERRIDE; |