diff options
author | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-03 18:59:43 +0000 |
---|---|---|
committer | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-03 18:59:43 +0000 |
commit | 054bd377c94c57d3a38143cbb06b5a9aff6ed637 (patch) | |
tree | cf988ef20e33971c477b4e1ff2bdfb06fc9aae59 /content/renderer/render_thread_impl.h | |
parent | 56a58b31c17db18a299a6a2cb21a953891ba7ff3 (diff) | |
download | chromium_src-054bd377c94c57d3a38143cbb06b5a9aff6ed637.zip chromium_src-054bd377c94c57d3a38143cbb06b5a9aff6ed637.tar.gz chromium_src-054bd377c94c57d3a38143cbb06b5a9aff6ed637.tar.bz2 |
Remove GpuChannelHostFactory::GetShutDownEvent().
I'd like to add GetShutDownEvent() to RenderThread. However, that would cause
RenderThreadImpl to have two base classes specify that method, which is pretty
weird.
This removes GpuChannelHostFactory::GetShutDownEvent() and provides the
shutdown event in the GpuChannelHost constructor instead.
BUG=
Review URL: https://codereview.chromium.org/181413003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254515 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/render_thread_impl.h')
-rw-r--r-- | content/renderer/render_thread_impl.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h index a613484..9172f97 100644 --- a/content/renderer/render_thread_impl.h +++ b/content/renderer/render_thread_impl.h @@ -358,7 +358,6 @@ class CONTENT_EXPORT RenderThreadImpl : public RenderThread, virtual bool IsMainThread() OVERRIDE; virtual base::MessageLoop* GetMainLoop() OVERRIDE; virtual scoped_refptr<base::MessageLoopProxy> GetIOLoopProxy() OVERRIDE; - virtual base::WaitableEvent* GetShutDownEvent() OVERRIDE; virtual scoped_ptr<base::SharedMemory> AllocateSharedMemory( size_t size) OVERRIDE; virtual int32 CreateViewCommandBuffer( @@ -462,7 +461,6 @@ class CONTENT_EXPORT RenderThreadImpl : public RenderThread, // Cache of variables that are needed on the compositor thread by // GpuChannelHostFactory methods. scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; - base::WaitableEvent* shutdown_event_; // A lazily initiated thread on which file operations are run. scoped_ptr<base::Thread> file_thread_; |