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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 virtual void ConnectToService( | 423 virtual void ConnectToService( |
424 const mojo::String& service_url, | 424 const mojo::String& service_url, |
425 const mojo::String& service_name, | 425 const mojo::String& service_name, |
426 mojo::ScopedMessagePipeHandle message_pipe, | 426 mojo::ScopedMessagePipeHandle message_pipe, |
427 const mojo::String& requestor_url) OVERRIDE; | 427 const mojo::String& requestor_url) OVERRIDE; |
428 | 428 |
429 void Init(); | 429 void Init(); |
430 | 430 |
431 void OnSetZoomLevelForCurrentURL(const std::string& scheme, | 431 void OnSetZoomLevelForCurrentURL(const std::string& scheme, |
432 const std::string& host, | 432 const std::string& host, |
433 double zoom_level); | 433 double zoom_level, |
| 434 const std::set<int>& exceptions); |
434 void OnCreateNewView(const ViewMsg_New_Params& params); | 435 void OnCreateNewView(const ViewMsg_New_Params& params); |
435 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); | 436 void OnTransferBitmap(const SkBitmap& bitmap, int resource_id); |
436 void OnPurgePluginListCache(bool reload_pages); | 437 void OnPurgePluginListCache(bool reload_pages); |
437 void OnNetworkStateChanged(bool online, | 438 void OnNetworkStateChanged(bool online, |
438 net::NetworkChangeNotifier::ConnectionType type); | 439 net::NetworkChangeNotifier::ConnectionType type); |
439 void OnGetAccessibilityTree(); | 440 void OnGetAccessibilityTree(); |
440 void OnTempCrashWithData(const GURL& data); | 441 void OnTempCrashWithData(const GURL& data); |
441 void OnUpdateTimezone(); | 442 void OnUpdateTimezone(); |
442 void OnMemoryPressure( | 443 void OnMemoryPressure( |
443 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level); | 444 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level); |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 bool is_distance_field_text_enabled_; | 569 bool is_distance_field_text_enabled_; |
569 bool is_zero_copy_enabled_; | 570 bool is_zero_copy_enabled_; |
570 bool is_one_copy_enabled_; | 571 bool is_one_copy_enabled_; |
571 | 572 |
572 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 573 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
573 }; | 574 }; |
574 | 575 |
575 } // namespace content | 576 } // namespace content |
576 | 577 |
577 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 578 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |