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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 const std::string& host, | 447 const std::string& host, |
448 double zoom_level); | 448 double zoom_level); |
449 void OnCreateNewView(const ViewMsg_New_Params& params); | 449 void OnCreateNewView(const ViewMsg_New_Params& params); |
450 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); | 450 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); |
451 #if defined(ENABLE_PLUGINS) | 451 #if defined(ENABLE_PLUGINS) |
452 void OnPurgePluginListCache(bool reload_pages); | 452 void OnPurgePluginListCache(bool reload_pages); |
453 #endif | 453 #endif |
454 void OnNetworkTypeChanged(net::NetworkChangeNotifier::ConnectionType type); | 454 void OnNetworkTypeChanged(net::NetworkChangeNotifier::ConnectionType type); |
455 void OnGetAccessibilityTree(); | 455 void OnGetAccessibilityTree(); |
456 void OnTempCrashWithData(const GURL& data); | 456 void OnTempCrashWithData(const GURL& data); |
457 void OnUpdateTimezone(); | 457 void OnUpdateTimezone(const std::string& zoneId); |
458 void OnMemoryPressure( | 458 void OnMemoryPressure( |
459 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level); | 459 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level); |
460 #if defined(OS_ANDROID) | 460 #if defined(OS_ANDROID) |
461 void OnSetWebKitSharedTimersSuspended(bool suspend); | 461 void OnSetWebKitSharedTimersSuspended(bool suspend); |
462 #endif | 462 #endif |
463 #if defined(OS_MACOSX) | 463 #if defined(OS_MACOSX) |
464 void OnUpdateScrollbarTheme(float initial_button_delay, | 464 void OnUpdateScrollbarTheme(float initial_button_delay, |
465 float autoscroll_button_delay, | 465 float autoscroll_button_delay, |
466 bool jump_on_track_click, | 466 bool jump_on_track_click, |
467 blink::ScrollerStyle preferred_scroller_style, | 467 blink::ScrollerStyle preferred_scroller_style, |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 648 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
649 }; | 649 }; |
650 | 650 |
651 #if defined(COMPILER_MSVC) | 651 #if defined(COMPILER_MSVC) |
652 #pragma warning(pop) | 652 #pragma warning(pop) |
653 #endif | 653 #endif |
654 | 654 |
655 } // namespace content | 655 } // namespace content |
656 | 656 |
657 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 657 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |