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

Unified Diff: mojo/examples/compositor_app/compositor_host.h

Issue 272323003: Mojo: Implement support for |Foo&| mojom syntax (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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
« no previous file with comments | « mojo/examples/compositor_app/compositor_app.cc ('k') | mojo/examples/compositor_app/compositor_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/compositor_app/compositor_host.h
diff --git a/mojo/examples/compositor_app/compositor_host.h b/mojo/examples/compositor_app/compositor_host.h
index 35c78c5f697988a57663b93f679c8c559b058662..ea49e2804114c3eb0a8b2fcf09c1eb852ed044da 100644
--- a/mojo/examples/compositor_app/compositor_host.h
+++ b/mojo/examples/compositor_app/compositor_host.h
@@ -23,7 +23,7 @@ class GLES2ClientImpl;
class CompositorHost : public cc::LayerTreeHostClient {
public:
- explicit CompositorHost(ScopedMessagePipeHandle gl_pipe);
+ explicit CompositorHost(ScopedMessagePipeHandle command_buffer_handle);
virtual ~CompositorHost();
void SetSize(const gfx::Size& viewport_size);
@@ -46,7 +46,7 @@ class CompositorHost : public cc::LayerTreeHostClient {
private:
void SetupScene();
- ScopedMessagePipeHandle gl_pipe_;
+ ScopedMessagePipeHandle command_buffer_handle_;
scoped_ptr<cc::LayerTreeHost> tree_;
scoped_refptr<cc::Layer> child_layer_;
base::Thread compositor_thread_;
« no previous file with comments | « mojo/examples/compositor_app/compositor_app.cc ('k') | mojo/examples/compositor_app/compositor_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698