| 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 "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/callback_helpers.h" | 10 #include "base/callback_helpers.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "content/browser/renderer_host/input/synthetic_gesture_target_aura.h" | 27 #include "content/browser/renderer_host/input/synthetic_gesture_target_aura.h" |
| 28 #include "content/browser/renderer_host/overscroll_controller.h" | 28 #include "content/browser/renderer_host/overscroll_controller.h" |
| 29 #include "content/browser/renderer_host/render_view_host_delegate.h" | 29 #include "content/browser/renderer_host/render_view_host_delegate.h" |
| 30 #include "content/browser/renderer_host/render_view_host_impl.h" | 30 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 31 #include "content/browser/renderer_host/render_widget_host_impl.h" | 31 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 32 #include "content/browser/renderer_host/ui_events_helper.h" | 32 #include "content/browser/renderer_host/ui_events_helper.h" |
| 33 #include "content/browser/renderer_host/web_input_event_aura.h" | 33 #include "content/browser/renderer_host/web_input_event_aura.h" |
| 34 #include "content/common/gpu/client/gl_helper.h" | 34 #include "content/common/gpu/client/gl_helper.h" |
| 35 #include "content/common/gpu/gpu_messages.h" | 35 #include "content/common/gpu/gpu_messages.h" |
| 36 #include "content/common/view_messages.h" | 36 #include "content/common/view_messages.h" |
| 37 #include "content/port/browser/render_widget_host_view_frame_subscriber.h" | |
| 38 #include "content/public/browser/content_browser_client.h" | 37 #include "content/public/browser/content_browser_client.h" |
| 39 #include "content/public/browser/render_view_host.h" | 38 #include "content/public/browser/render_view_host.h" |
| 39 #include "content/public/browser/render_widget_host_view_frame_subscriber.h" |
| 40 #include "content/public/browser/user_metrics.h" | 40 #include "content/public/browser/user_metrics.h" |
| 41 #include "third_party/WebKit/public/platform/WebScreenInfo.h" | 41 #include "third_party/WebKit/public/platform/WebScreenInfo.h" |
| 42 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" | 42 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
| 43 #include "third_party/WebKit/public/web/WebInputEvent.h" | 43 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 44 #include "ui/aura/client/aura_constants.h" | 44 #include "ui/aura/client/aura_constants.h" |
| 45 #include "ui/aura/client/cursor_client.h" | 45 #include "ui/aura/client/cursor_client.h" |
| 46 #include "ui/aura/client/cursor_client_observer.h" | 46 #include "ui/aura/client/cursor_client_observer.h" |
| 47 #include "ui/aura/client/focus_client.h" | 47 #include "ui/aura/client/focus_client.h" |
| 48 #include "ui/aura/client/screen_position_client.h" | 48 #include "ui/aura/client/screen_position_client.h" |
| 49 #include "ui/aura/client/window_tree_client.h" | 49 #include "ui/aura/client/window_tree_client.h" |
| (...skipping 2296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2346 | 2346 |
| 2347 //////////////////////////////////////////////////////////////////////////////// | 2347 //////////////////////////////////////////////////////////////////////////////// |
| 2348 // RenderWidgetHostViewBase, public: | 2348 // RenderWidgetHostViewBase, public: |
| 2349 | 2349 |
| 2350 // static | 2350 // static |
| 2351 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { | 2351 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { |
| 2352 GetScreenInfoForWindow(results, NULL); | 2352 GetScreenInfoForWindow(results, NULL); |
| 2353 } | 2353 } |
| 2354 | 2354 |
| 2355 } // namespace content | 2355 } // namespace content |
| OLD | NEW |