| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "blimp/client/feature/compositor/blimp_compositor_manager.h" | 5 #include "blimp/client/feature/compositor/blimp_compositor_manager.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "blimp/client/feature/compositor/blimp_layer_tree_settings.h" | 9 #include "blimp/client/feature/compositor/blimp_layer_tree_settings.h" |
| 10 #include "blimp/common/compositor/blimp_image_serialization_processor.h" | 10 #include "blimp/client/feature/compositor/client_image_serialization_processor.h
" |
| 11 #include "blimp/common/compositor/blimp_task_graph_runner.h" | 11 #include "blimp/common/compositor/blimp_task_graph_runner.h" |
| 12 #include "cc/proto/compositor_message.pb.h" | 12 #include "cc/proto/compositor_message.pb.h" |
| 13 | 13 |
| 14 namespace blimp { | 14 namespace blimp { |
| 15 namespace client { | 15 namespace client { |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| 18 base::LazyInstance<blimp::BlimpTaskGraphRunner> g_task_graph_runner = | 18 base::LazyInstance<blimp::BlimpTaskGraphRunner> g_task_graph_runner = |
| 19 LAZY_INSTANCE_INITIALIZER; | 19 LAZY_INSTANCE_INITIALIZER; |
| 20 | 20 |
| 21 const int kDummyTabId = 0; | 21 const int kDummyTabId = 0; |
| 22 } // namespace | 22 } // namespace |
| 23 | 23 |
| 24 BlimpCompositorManager::BlimpCompositorManager( | 24 BlimpCompositorManager::BlimpCompositorManager( |
| 25 RenderWidgetFeature* render_widget_feature, | 25 RenderWidgetFeature* render_widget_feature, |
| 26 BlimpCompositorManagerClient* client) | 26 BlimpCompositorManagerClient* client) |
| 27 : visible_(false), | 27 : visible_(false), |
| 28 window_(gfx::kNullAcceleratedWidget), | 28 window_(gfx::kNullAcceleratedWidget), |
| 29 gpu_memory_buffer_manager_(new BlimpGpuMemoryBufferManager), | 29 gpu_memory_buffer_manager_(new BlimpGpuMemoryBufferManager), |
| 30 image_serialization_processor_(new BlimpImageSerializationProcessor( | 30 image_serialization_processor_(new ClientImageSerializationProcessor), |
| 31 BlimpImageSerializationProcessor::Mode::DESERIALIZATION)), | |
| 32 active_compositor_(nullptr), | 31 active_compositor_(nullptr), |
| 33 render_widget_feature_(render_widget_feature), | 32 render_widget_feature_(render_widget_feature), |
| 34 client_(client) { | 33 client_(client) { |
| 35 DCHECK(render_widget_feature_); | 34 DCHECK(render_widget_feature_); |
| 36 render_widget_feature_->SetDelegate(kDummyTabId, this); | 35 render_widget_feature_->SetDelegate(kDummyTabId, this); |
| 37 } | 36 } |
| 38 | 37 |
| 39 BlimpCompositorManager::~BlimpCompositorManager() { | 38 BlimpCompositorManager::~BlimpCompositorManager() { |
| 40 render_widget_feature_->RemoveDelegate(kDummyTabId); | 39 render_widget_feature_->RemoveDelegate(kDummyTabId); |
| 41 if (compositor_thread_) | 40 if (compositor_thread_) |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 | 199 |
| 201 BlimpCompositor* BlimpCompositorManager::GetCompositor(int render_widget_id) { | 200 BlimpCompositor* BlimpCompositorManager::GetCompositor(int render_widget_id) { |
| 202 CompositorMap::const_iterator it = compositors_.find(render_widget_id); | 201 CompositorMap::const_iterator it = compositors_.find(render_widget_id); |
| 203 if (it == compositors_.end()) | 202 if (it == compositors_.end()) |
| 204 return nullptr; | 203 return nullptr; |
| 205 return it->second.get(); | 204 return it->second.get(); |
| 206 } | 205 } |
| 207 | 206 |
| 208 } // namespace client | 207 } // namespace client |
| 209 } // namespace blimp | 208 } // namespace blimp |
| OLD | NEW |