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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 | 424 |
425 void OnCreateNewFrame(int routing_id, int parent_routing_id); | 425 void OnCreateNewFrame(int routing_id, int parent_routing_id); |
426 void OnCreateNewFrameProxy(int routing_id, | 426 void OnCreateNewFrameProxy(int routing_id, |
427 int parent_routing_id, | 427 int parent_routing_id, |
428 int render_view_routing_id); | 428 int render_view_routing_id); |
429 void OnSetZoomLevelForCurrentURL(const std::string& scheme, | 429 void OnSetZoomLevelForCurrentURL(const std::string& scheme, |
430 const std::string& host, | 430 const std::string& host, |
431 double zoom_level); | 431 double zoom_level); |
432 void OnCreateNewView(const ViewMsg_New_Params& params); | 432 void OnCreateNewView(const ViewMsg_New_Params& params); |
433 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); | 433 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); |
| 434 #if defined(ENABLE_PLUGINS) |
434 void OnPurgePluginListCache(bool reload_pages); | 435 void OnPurgePluginListCache(bool reload_pages); |
| 436 #endif |
435 void OnNetworkTypeChanged(net::NetworkChangeNotifier::ConnectionType type); | 437 void OnNetworkTypeChanged(net::NetworkChangeNotifier::ConnectionType type); |
436 void OnGetAccessibilityTree(); | 438 void OnGetAccessibilityTree(); |
437 void OnTempCrashWithData(const GURL& data); | 439 void OnTempCrashWithData(const GURL& data); |
438 void OnUpdateTimezone(); | 440 void OnUpdateTimezone(); |
439 void OnMemoryPressure( | 441 void OnMemoryPressure( |
440 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level); | 442 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level); |
441 #if defined(OS_ANDROID) | 443 #if defined(OS_ANDROID) |
442 void OnSetWebKitSharedTimersSuspended(bool suspend); | 444 void OnSetWebKitSharedTimersSuspended(bool suspend); |
443 #endif | 445 #endif |
444 #if defined(OS_MACOSX) | 446 #if defined(OS_MACOSX) |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 bool is_one_copy_enabled_; | 580 bool is_one_copy_enabled_; |
579 | 581 |
580 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; | 582 std::map<int, mojo::MessagePipeHandle> pending_render_frame_connects_; |
581 | 583 |
582 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 584 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
583 }; | 585 }; |
584 | 586 |
585 } // namespace content | 587 } // namespace content |
586 | 588 |
587 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 589 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |