| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 void OnProcessBackgrounded(bool backgrounded) override; | 455 void OnProcessBackgrounded(bool backgrounded) override; |
| 456 | 456 |
| 457 // GpuChannelHostFactory implementation: | 457 // GpuChannelHostFactory implementation: |
| 458 bool IsMainThread() override; | 458 bool IsMainThread() override; |
| 459 scoped_refptr<base::SingleThreadTaskRunner> GetIOThreadTaskRunner() override; | 459 scoped_refptr<base::SingleThreadTaskRunner> GetIOThreadTaskRunner() override; |
| 460 scoped_ptr<base::SharedMemory> AllocateSharedMemory(size_t size) override; | 460 scoped_ptr<base::SharedMemory> AllocateSharedMemory(size_t size) override; |
| 461 CreateCommandBufferResult CreateViewCommandBuffer( | 461 CreateCommandBufferResult CreateViewCommandBuffer( |
| 462 int32 surface_id, | 462 int32 surface_id, |
| 463 const GPUCreateCommandBufferConfig& init_params, | 463 const GPUCreateCommandBufferConfig& init_params, |
| 464 int32 route_id) override; | 464 int32 route_id) override; |
| 465 scoped_refptr<base::SingleThreadTaskRunner> TaskRunner() override; |
| 465 | 466 |
| 466 void Init(); | 467 void Init(); |
| 467 | 468 |
| 468 void InitializeCompositorThread(); | 469 void InitializeCompositorThread(); |
| 469 | 470 |
| 470 void OnCreateNewFrame(FrameMsg_NewFrame_Params params); | 471 void OnCreateNewFrame(FrameMsg_NewFrame_Params params); |
| 471 void OnCreateNewFrameProxy(int routing_id, | 472 void OnCreateNewFrameProxy(int routing_id, |
| 472 int render_view_routing_id, | 473 int render_view_routing_id, |
| 473 int opener_routing_id, | 474 int opener_routing_id, |
| 474 int parent_routing_id, | 475 int parent_routing_id, |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 659 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 659 }; | 660 }; |
| 660 | 661 |
| 661 #if defined(COMPILER_MSVC) | 662 #if defined(COMPILER_MSVC) |
| 662 #pragma warning(pop) | 663 #pragma warning(pop) |
| 663 #endif | 664 #endif |
| 664 | 665 |
| 665 } // namespace content | 666 } // namespace content |
| 666 | 667 |
| 667 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 668 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |