| 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 #include "content/browser/renderer_host/render_widget_host_view_aura.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_aura.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #include "content/browser/renderer_host/overscroll_controller.h" | 39 #include "content/browser/renderer_host/overscroll_controller.h" |
| 40 #include "content/browser/renderer_host/render_view_host_delegate.h" | 40 #include "content/browser/renderer_host/render_view_host_delegate.h" |
| 41 #include "content/browser/renderer_host/render_view_host_delegate_view.h" | 41 #include "content/browser/renderer_host/render_view_host_delegate_view.h" |
| 42 #include "content/browser/renderer_host/render_view_host_impl.h" | 42 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 43 #include "content/browser/renderer_host/render_widget_host_delegate.h" | 43 #include "content/browser/renderer_host/render_widget_host_delegate.h" |
| 44 #include "content/browser/renderer_host/render_widget_host_impl.h" | 44 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 45 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" | 45 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" |
| 46 #include "content/browser/renderer_host/ui_events_helper.h" | 46 #include "content/browser/renderer_host/ui_events_helper.h" |
| 47 #include "content/browser/renderer_host/web_input_event_aura.h" | 47 #include "content/browser/renderer_host/web_input_event_aura.h" |
| 48 #include "content/common/content_switches_internal.h" | 48 #include "content/common/content_switches_internal.h" |
| 49 #include "content/common/gpu/gpu_messages.h" | |
| 50 #include "content/common/site_isolation_policy.h" | 49 #include "content/common/site_isolation_policy.h" |
| 51 #include "content/common/view_messages.h" | 50 #include "content/common/view_messages.h" |
| 52 #include "content/public/browser/content_browser_client.h" | 51 #include "content/public/browser/content_browser_client.h" |
| 53 #include "content/public/browser/overscroll_configuration.h" | 52 #include "content/public/browser/overscroll_configuration.h" |
| 54 #include "content/public/browser/render_view_host.h" | 53 #include "content/public/browser/render_view_host.h" |
| 55 #include "content/public/browser/render_widget_host_view_frame_subscriber.h" | 54 #include "content/public/browser/render_widget_host_view_frame_subscriber.h" |
| 56 #include "content/public/browser/user_metrics.h" | 55 #include "content/public/browser/user_metrics.h" |
| 57 #include "content/public/common/content_switches.h" | 56 #include "content/public/common/content_switches.h" |
| 57 #include "gpu/ipc/common/gpu_messages.h" |
| 58 #include "third_party/WebKit/public/platform/WebScreenInfo.h" | 58 #include "third_party/WebKit/public/platform/WebScreenInfo.h" |
| 59 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" | 59 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
| 60 #include "third_party/WebKit/public/web/WebInputEvent.h" | 60 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 61 #include "ui/aura/client/aura_constants.h" | 61 #include "ui/aura/client/aura_constants.h" |
| 62 #include "ui/aura/client/cursor_client.h" | 62 #include "ui/aura/client/cursor_client.h" |
| 63 #include "ui/aura/client/cursor_client_observer.h" | 63 #include "ui/aura/client/cursor_client_observer.h" |
| 64 #include "ui/aura/client/focus_client.h" | 64 #include "ui/aura/client/focus_client.h" |
| 65 #include "ui/aura/client/screen_position_client.h" | 65 #include "ui/aura/client/screen_position_client.h" |
| 66 #include "ui/aura/client/window_tree_client.h" | 66 #include "ui/aura/client/window_tree_client.h" |
| 67 #include "ui/aura/env.h" | 67 #include "ui/aura/env.h" |
| (...skipping 2873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2941 | 2941 |
| 2942 //////////////////////////////////////////////////////////////////////////////// | 2942 //////////////////////////////////////////////////////////////////////////////// |
| 2943 // RenderWidgetHostViewBase, public: | 2943 // RenderWidgetHostViewBase, public: |
| 2944 | 2944 |
| 2945 // static | 2945 // static |
| 2946 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { | 2946 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { |
| 2947 GetScreenInfoForWindow(results, NULL); | 2947 GetScreenInfoForWindow(results, NULL); |
| 2948 } | 2948 } |
| 2949 | 2949 |
| 2950 } // namespace content | 2950 } // namespace content |
| OLD | NEW |