| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MOJO_EXAMPLES_COMPOSITOR_APP_COMPOSITOR_HOST_H_ | 5 #ifndef MOJO_EXAMPLES_COMPOSITOR_APP_COMPOSITOR_HOST_H_ |
| 6 #define MOJO_EXAMPLES_COMPOSITOR_APP_COMPOSITOR_HOST_H_ | 6 #define MOJO_EXAMPLES_COMPOSITOR_APP_COMPOSITOR_HOST_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/threading/thread.h" | 10 #include "base/threading/thread.h" |
| 11 #include "cc/trees/layer_tree_host_client.h" | 11 #include "cc/trees/layer_tree_host_client.h" |
| 12 #include "mojo/public/cpp/system/core.h" | 12 #include "mojo/public/cpp/system/core.h" |
| 13 #include "ui/gfx/size.h" | 13 #include "ui/gfx/size.h" |
| 14 | 14 |
| 15 namespace cc { | 15 namespace cc { |
| 16 class Layer; | 16 class Layer; |
| 17 class LayerTreeHost; | 17 class LayerTreeHost; |
| 18 } // namespace cc | 18 } // namespace cc |
| 19 | 19 |
| 20 namespace mojo { | 20 namespace mojo { |
| 21 namespace examples { | 21 namespace examples { |
| 22 class GLES2ClientImpl; | 22 class GLES2ClientImpl; |
| 23 | 23 |
| 24 class CompositorHost : public cc::LayerTreeHostClient { | 24 class CompositorHost : public cc::LayerTreeHostClient { |
| 25 public: | 25 public: |
| 26 explicit CompositorHost(ScopedMessagePipeHandle gl_pipe); | 26 explicit CompositorHost(ScopedMessagePipeHandle gl_pipe); |
| 27 virtual ~CompositorHost(); | 27 virtual ~CompositorHost(); |
| 28 | 28 |
| 29 void SetSize(gfx::Size viewport_size); | 29 void SetSize(const gfx::Size& viewport_size); |
| 30 | 30 |
| 31 // cc::LayerTreeHostClient implementation. | 31 // cc::LayerTreeHostClient implementation. |
| 32 virtual void WillBeginMainFrame(int frame_id) OVERRIDE; | 32 virtual void WillBeginMainFrame(int frame_id) OVERRIDE; |
| 33 virtual void DidBeginMainFrame() OVERRIDE; | 33 virtual void DidBeginMainFrame() OVERRIDE; |
| 34 virtual void Animate(base::TimeTicks frame_begin_time) OVERRIDE; | 34 virtual void Animate(base::TimeTicks frame_begin_time) OVERRIDE; |
| 35 virtual void Layout() OVERRIDE; | 35 virtual void Layout() OVERRIDE; |
| 36 virtual void ApplyScrollAndScale(const gfx::Vector2d& scroll_delta, | 36 virtual void ApplyScrollAndScale(const gfx::Vector2d& scroll_delta, |
| 37 float page_scale) OVERRIDE; | 37 float page_scale) OVERRIDE; |
| 38 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) | 38 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) |
| 39 OVERRIDE; | 39 OVERRIDE; |
| 40 virtual void DidInitializeOutputSurface() OVERRIDE; | 40 virtual void DidInitializeOutputSurface() OVERRIDE; |
| 41 virtual void WillCommit() OVERRIDE; | 41 virtual void WillCommit() OVERRIDE; |
| 42 virtual void DidCommit() OVERRIDE; | 42 virtual void DidCommit() OVERRIDE; |
| 43 virtual void DidCommitAndDrawFrame() OVERRIDE; | 43 virtual void DidCommitAndDrawFrame() OVERRIDE; |
| 44 virtual void DidCompleteSwapBuffers() OVERRIDE; | 44 virtual void DidCompleteSwapBuffers() OVERRIDE; |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 void SetupScene(); | 47 void SetupScene(); |
| 48 | 48 |
| 49 ScopedMessagePipeHandle gl_pipe_; | 49 ScopedMessagePipeHandle gl_pipe_; |
| 50 scoped_ptr<cc::LayerTreeHost> tree_; | 50 scoped_ptr<cc::LayerTreeHost> tree_; |
| 51 scoped_refptr<cc::Layer> child_layer_; | 51 scoped_refptr<cc::Layer> child_layer_; |
| 52 base::Thread compositor_thread_; | 52 base::Thread compositor_thread_; |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 } // namespace examples | 55 } // namespace examples |
| 56 } // namespace mojo | 56 } // namespace mojo |
| 57 | 57 |
| 58 #endif // MOJO_EXAMPLES_COMPOSITOR_APP_COMPOSITOR_HOST_H_ | 58 #endif // MOJO_EXAMPLES_COMPOSITOR_APP_COMPOSITOR_HOST_H_ |
| OLD | NEW |