Chromium Code Reviews| 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; |
| 37 class ClientImageSerializationProcessor; | |
|
Kevin M
2016/05/05 19:34:39
I don't see this class referenced in this file. Re
nyquist
2016/05/05 21:26:08
Done.
| |
| 38 | 38 |
| 39 namespace client { | 39 namespace client { |
| 40 | 40 |
| 41 // The BlimpCompositorClient provides the BlimpCompositor with the necessary | 41 // The BlimpCompositorClient provides the BlimpCompositor with the necessary |
| 42 // dependencies for cc::LayerTreeHost owned by this compositor and for | 42 // dependencies for cc::LayerTreeHost owned by this compositor and for |
| 43 // communicating the compositor and input messages to the corresponding | 43 // communicating the compositor and input messages to the corresponding |
| 44 // render widget of this compositor on the engine. | 44 // render widget of this compositor on the engine. |
| 45 class BlimpCompositorClient { | 45 class BlimpCompositorClient { |
| 46 public: | 46 public: |
| 47 // These methods should provide the dependencies for cc::LayerTreeHost for | 47 // These methods should provide the dependencies for cc::LayerTreeHost for |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 207 // widget. | 207 // widget. |
| 208 std::unique_ptr<BlimpInputManager> input_manager_; | 208 std::unique_ptr<BlimpInputManager> input_manager_; |
| 209 | 209 |
| 210 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); | 210 DISALLOW_COPY_AND_ASSIGN(BlimpCompositor); |
| 211 }; | 211 }; |
| 212 | 212 |
| 213 } // namespace client | 213 } // namespace client |
| 214 } // namespace blimp | 214 } // namespace blimp |
| 215 | 215 |
| 216 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ | 216 #endif // BLIMP_CLIENT_FEATURE_COMPOSITOR_BLIMP_COMPOSITOR_H_ |
| OLD | NEW |