OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "content/renderer/gpu/render_widget_compositor.h" | 5 #include "content/renderer/gpu/render_widget_compositor.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/string_number_conversions.h" | 12 #include "base/strings/string_number_conversions.h" |
13 #include "base/synchronization/lock.h" | 13 #include "base/synchronization/lock.h" |
14 #include "base/time.h" | 14 #include "base/time.h" |
15 #include "cc/base/switches.h" | 15 #include "cc/base/switches.h" |
16 #include "cc/base/thread_impl.h" | 16 #include "cc/base/thread_impl.h" |
17 #include "cc/debug/layer_tree_debug_state.h" | 17 #include "cc/debug/layer_tree_debug_state.h" |
18 #include "cc/layers/layer.h" | 18 #include "cc/layers/layer.h" |
19 #include "cc/trees/layer_tree_host.h" | 19 #include "cc/trees/layer_tree_host.h" |
20 #include "content/common/gpu/client/context_provider_command_buffer.h" | 20 #include "content/common/gpu/client/context_provider_command_buffer.h" |
21 #include "content/public/common/content_switches.h" | 21 #include "content/public/common/content_switches.h" |
22 #include "content/renderer/gpu/input_handler_manager.h" | 22 #include "content/renderer/gpu/input_handler_manager.h" |
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 return RenderThreadImpl::current()->OffscreenContextProviderForMainThread(); | 569 return RenderThreadImpl::current()->OffscreenContextProviderForMainThread(); |
570 } | 570 } |
571 | 571 |
572 scoped_refptr<cc::ContextProvider> | 572 scoped_refptr<cc::ContextProvider> |
573 RenderWidgetCompositor::OffscreenContextProviderForCompositorThread() { | 573 RenderWidgetCompositor::OffscreenContextProviderForCompositorThread() { |
574 return RenderThreadImpl::current()-> | 574 return RenderThreadImpl::current()-> |
575 OffscreenContextProviderForCompositorThread(); | 575 OffscreenContextProviderForCompositorThread(); |
576 } | 576 } |
577 | 577 |
578 } // namespace content | 578 } // namespace content |
OLD | NEW |