| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "content/renderer/render_view_impl.h" | 5 #include "content/renderer/render_view_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "content/common/drag_messages.h" | 31 #include "content/common/drag_messages.h" |
| 32 #include "content/common/file_system/file_system_dispatcher.h" | 32 #include "content/common/file_system/file_system_dispatcher.h" |
| 33 #include "content/common/file_system/webfilesystem_callback_dispatcher.h" | 33 #include "content/common/file_system/webfilesystem_callback_dispatcher.h" |
| 34 #include "content/common/intents_messages.h" | 34 #include "content/common/intents_messages.h" |
| 35 #include "content/common/notification_service.h" | 35 #include "content/common/notification_service.h" |
| 36 #include "content/common/pepper_messages.h" | 36 #include "content/common/pepper_messages.h" |
| 37 #include "content/common/pepper_plugin_registry.h" | 37 #include "content/common/pepper_plugin_registry.h" |
| 38 #include "content/common/quota_dispatcher.h" | 38 #include "content/common/quota_dispatcher.h" |
| 39 #include "content/common/renderer_preferences.h" | 39 #include "content/common/renderer_preferences.h" |
| 40 #include "content/common/request_extra_data.h" | 40 #include "content/common/request_extra_data.h" |
| 41 #include "content/common/url_constants.h" | |
| 42 #include "content/common/view_messages.h" | 41 #include "content/common/view_messages.h" |
| 43 #include "content/public/common/bindings_policy.h" | 42 #include "content/public/common/bindings_policy.h" |
| 44 #include "content/public/common/content_switches.h" | 43 #include "content/public/common/content_switches.h" |
| 44 #include "content/public/common/url_constants.h" |
| 45 #include "content/public/renderer/content_renderer_client.h" | 45 #include "content/public/renderer/content_renderer_client.h" |
| 46 #include "content/public/renderer/navigation_state.h" | 46 #include "content/public/renderer/navigation_state.h" |
| 47 #include "content/public/renderer/render_view_observer.h" | 47 #include "content/public/renderer/render_view_observer.h" |
| 48 #include "content/public/renderer/render_view_visitor.h" | 48 #include "content/public/renderer/render_view_visitor.h" |
| 49 #include "content/renderer/device_orientation_dispatcher.h" | 49 #include "content/renderer/device_orientation_dispatcher.h" |
| 50 #include "content/renderer/devtools_agent.h" | 50 #include "content/renderer/devtools_agent.h" |
| 51 #include "content/renderer/external_popup_menu.h" | 51 #include "content/renderer/external_popup_menu.h" |
| 52 #include "content/renderer/geolocation_dispatcher.h" | 52 #include "content/renderer/geolocation_dispatcher.h" |
| 53 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h" | 53 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h" |
| 54 #include "content/renderer/intents_dispatcher.h" | 54 #include "content/renderer/intents_dispatcher.h" |
| (...skipping 4535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4590 pepper_delegate_.OnLockMouseACK(succeeded); | 4590 pepper_delegate_.OnLockMouseACK(succeeded); |
| 4591 } | 4591 } |
| 4592 | 4592 |
| 4593 void RenderViewImpl::OnMouseLockLost() { | 4593 void RenderViewImpl::OnMouseLockLost() { |
| 4594 pepper_delegate_.OnMouseLockLost(); | 4594 pepper_delegate_.OnMouseLockLost(); |
| 4595 } | 4595 } |
| 4596 | 4596 |
| 4597 bool RenderViewImpl::WebWidgetHandlesCompositorScheduling() const { | 4597 bool RenderViewImpl::WebWidgetHandlesCompositorScheduling() const { |
| 4598 return webview()->settings()->useThreadedCompositor(); | 4598 return webview()->settings()->useThreadedCompositor(); |
| 4599 } | 4599 } |
| OLD | NEW |