| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 CreateCommandBufferResult CreateViewCommandBuffer( | 442 CreateCommandBufferResult CreateViewCommandBuffer( |
| 443 int32 surface_id, | 443 int32 surface_id, |
| 444 const GPUCreateCommandBufferConfig& init_params, | 444 const GPUCreateCommandBufferConfig& init_params, |
| 445 int32 route_id) override; | 445 int32 route_id) override; |
| 446 | 446 |
| 447 void Init(); | 447 void Init(); |
| 448 | 448 |
| 449 void OnCreateNewFrame(FrameMsg_NewFrame_Params params); | 449 void OnCreateNewFrame(FrameMsg_NewFrame_Params params); |
| 450 void OnCreateNewFrameProxy(int routing_id, | 450 void OnCreateNewFrameProxy(int routing_id, |
| 451 int parent_routing_id, | 451 int parent_routing_id, |
| 452 int opener_routing_id, |
| 452 int render_view_routing_id, | 453 int render_view_routing_id, |
| 453 const FrameReplicationState& replicated_state); | 454 const FrameReplicationState& replicated_state); |
| 454 void OnSetZoomLevelForCurrentURL(const std::string& scheme, | 455 void OnSetZoomLevelForCurrentURL(const std::string& scheme, |
| 455 const std::string& host, | 456 const std::string& host, |
| 456 double zoom_level); | 457 double zoom_level); |
| 457 void OnCreateNewView(const ViewMsg_New_Params& params); | 458 void OnCreateNewView(const ViewMsg_New_Params& params); |
| 458 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); | 459 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); |
| 459 #if defined(ENABLE_PLUGINS) | 460 #if defined(ENABLE_PLUGINS) |
| 460 void OnPurgePluginListCache(bool reload_pages); | 461 void OnPurgePluginListCache(bool reload_pages); |
| 461 #endif | 462 #endif |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 657 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 657 }; | 658 }; |
| 658 | 659 |
| 659 #if defined(COMPILER_MSVC) | 660 #if defined(COMPILER_MSVC) |
| 660 #pragma warning(pop) | 661 #pragma warning(pop) |
| 661 #endif | 662 #endif |
| 662 | 663 |
| 663 } // namespace content | 664 } // namespace content |
| 664 | 665 |
| 665 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 666 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |