| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ | 5 #ifndef BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ |
| 6 #define BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ | 6 #define BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 namespace cc { | 26 namespace cc { |
| 27 namespace proto { | 27 namespace proto { |
| 28 class CompositorMessage; | 28 class CompositorMessage; |
| 29 class InitializeImpl; | 29 class InitializeImpl; |
| 30 } | 30 } |
| 31 class LayerTreeHost; | 31 class LayerTreeHost; |
| 32 } | 32 } |
| 33 | 33 |
| 34 namespace blimp { | 34 namespace blimp { |
| 35 | 35 |
| 36 class BlimpImageSerializationProcessor; | |
| 37 class BlimpMessage; | 36 class BlimpMessage; |
| 38 | 37 |
| 39 namespace client { | 38 namespace client { |
| 40 | 39 |
| 41 // The BlimpCompositorClient provides the BlimpCompositor with the necessary | 40 // The BlimpCompositorClient provides the BlimpCompositor with the necessary |
| 42 // dependencies for cc::LayerTreeHost owned by this compositor and for | 41 // dependencies for cc::LayerTreeHost owned by this compositor and for |
| 43 // communicating the compositor and input messages to the corresponding | 42 // communicating the compositor and input messages to the corresponding |
| 44 // render widget of this compositor on the engine. | 43 // render widget of this compositor on the engine. |
| 45 class BlimpCompositorClient { | 44 class BlimpCompositorClient { |
| 46 public: | 45 public: |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 // widget. | 206 // widget. |
| 208 std::unique_ptr<BlimpInputManager> input_manager_; | 207 std::unique_ptr<BlimpInputManager> input_manager_; |
| 209 | 208 |
| 210 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); | 209 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); |
| 211 }; | 210 }; |
| 212 | 211 |
| 213 } // namespace client | 212 } // namespace client |
| 214 } // namespace blimp | 213 } // namespace blimp |
| 215 | 214 |
| 216 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ | 215 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ |
| OLD | NEW |