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