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

Unified Diff: content/public/renderer/content_renderer_client.h

Issue 15851006: Move synchronous compositor into content/browser (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tidy Created 7 years, 7 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
Index: content/public/renderer/content_renderer_client.h
diff --git a/content/public/renderer/content_renderer_client.h b/content/public/renderer/content_renderer_client.h
index b0c70a7ae8aa216341e834a53a377962fcf0027b..aba83948c283fd05e2c256ddc34365ceb91725a6 100644
--- a/content/public/renderer/content_renderer_client.h
+++ b/content/public/renderer/content_renderer_client.h
@@ -238,22 +238,6 @@ class CONTENT_EXPORT ContentRendererClient {
// Returns whether BrowserPlugin should be allowed within the |container|.
virtual bool AllowBrowserPlugin(WebKit::WebPluginContainer* container) const;
-
- // Allow the embedder to specify a different renderer compositor MessageLoop.
- // If not NULL, the returned MessageLoop must be valid for the lifetime of
- // 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;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698