diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-01 18:46:24 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-01 18:46:24 +0000 |
commit | 0e5a13aa0e667d34f893cb04d7c07db2153a733a (patch) | |
tree | 0eea9cc6a82f15c49e57e189c70bd212db2bc75b /content/public/renderer/content_renderer_client.h | |
parent | 4b55db2dff8dde8d0208dcd7eb4228d4743e948e (diff) | |
download | chromium_src-0e5a13aa0e667d34f893cb04d7c07db2153a733a.zip chromium_src-0e5a13aa0e667d34f893cb04d7c07db2153a733a.tar.gz chromium_src-0e5a13aa0e667d34f893cb04d7c07db2153a733a.tar.bz2 |
Revert 197660 "Introduce SynchronousCompositor + Client" which has incorrect gyp paths.
> Introduce SynchronousCompositor + Client
>
> Makes a direct API from aw/browser into the content/renderer
> compositor (for use in single process only).
> Plumb through the webview SW draw path as first step to removing
> the synchronous IPC path.
>
> BUG=230226
> NOTRY=true
>
> Review URL: https://chromiumcodereview.appspot.com/14445008
TBR=joth@chromium.org
Review URL: https://codereview.chromium.org/14598003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197676 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/renderer/content_renderer_client.h')
-rw-r--r-- | content/public/renderer/content_renderer_client.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/content/public/renderer/content_renderer_client.h b/content/public/renderer/content_renderer_client.h index 84b6d58..653d38c 100644 --- a/content/public/renderer/content_renderer_client.h +++ b/content/public/renderer/content_renderer_client.h @@ -59,7 +59,6 @@ class WebMediaPlayerParams; namespace content { class RenderView; -class SynchronousCompositor; // Embedder API for participating in renderer logic. class CONTENT_EXPORT ContentRendererClient { @@ -235,14 +234,6 @@ class CONTENT_EXPORT ContentRendererClient { // RenderThreadImpl. If NULL, then a new thread will be created. virtual base::MessageLoop* OverrideCompositorMessageLoop() const; - // Called when a render view's compositor instance is created, when the - // kEnableSynchronousRendererCompositor flag is used. - // NOTE this is called on the Compositor thread: the embedder must - // implement OverrideCompositorMessageLoop() when using this interface. - virtual void DidCreateSynchronousCompositor( - int render_view_id, - SynchronousCompositor* compositor) {} - // Allow the embedder to disable input event filtering by the compositor. virtual bool ShouldCreateCompositorInputHandler() const; }; |