| 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/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/callback_helpers.h" | 9 #include "base/callback_helpers.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #include "content/port/browser/render_widget_host_view_frame_subscriber.h" | 38 #include "content/port/browser/render_widget_host_view_frame_subscriber.h" |
| 39 #include "content/port/browser/render_widget_host_view_port.h" | 39 #include "content/port/browser/render_widget_host_view_port.h" |
| 40 #include "content/public/browser/browser_thread.h" | 40 #include "content/public/browser/browser_thread.h" |
| 41 #include "content/public/browser/content_browser_client.h" | 41 #include "content/public/browser/content_browser_client.h" |
| 42 #include "content/public/browser/render_process_host.h" | 42 #include "content/public/browser/render_process_host.h" |
| 43 #include "content/public/browser/render_view_host.h" | 43 #include "content/public/browser/render_view_host.h" |
| 44 #include "content/public/browser/user_metrics.h" | 44 #include "content/public/browser/user_metrics.h" |
| 45 #include "content/public/common/content_switches.h" | 45 #include "content/public/common/content_switches.h" |
| 46 #include "media/base/video_util.h" | 46 #include "media/base/video_util.h" |
| 47 #include "skia/ext/image_operations.h" | 47 #include "skia/ext/image_operations.h" |
| 48 #include "third_party/WebKit/public/platform/WebScreenInfo.h" |
| 48 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" | 49 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
| 49 #include "third_party/WebKit/public/web/WebInputEvent.h" | 50 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 50 #include "third_party/WebKit/public/web/WebScreenInfo.h" | |
| 51 #include "ui/aura/client/activation_client.h" | 51 #include "ui/aura/client/activation_client.h" |
| 52 #include "ui/aura/client/aura_constants.h" | 52 #include "ui/aura/client/aura_constants.h" |
| 53 #include "ui/aura/client/cursor_client.h" | 53 #include "ui/aura/client/cursor_client.h" |
| 54 #include "ui/aura/client/cursor_client_observer.h" | 54 #include "ui/aura/client/cursor_client_observer.h" |
| 55 #include "ui/aura/client/focus_client.h" | 55 #include "ui/aura/client/focus_client.h" |
| 56 #include "ui/aura/client/screen_position_client.h" | 56 #include "ui/aura/client/screen_position_client.h" |
| 57 #include "ui/aura/client/tooltip_client.h" | 57 #include "ui/aura/client/tooltip_client.h" |
| 58 #include "ui/aura/client/window_tree_client.h" | 58 #include "ui/aura/client/window_tree_client.h" |
| 59 #include "ui/aura/client/window_types.h" | 59 #include "ui/aura/client/window_types.h" |
| 60 #include "ui/aura/env.h" | 60 #include "ui/aura/env.h" |
| (...skipping 3266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3327 RenderWidgetHost* widget) { | 3327 RenderWidgetHost* widget) { |
| 3328 return new RenderWidgetHostViewAura(widget); | 3328 return new RenderWidgetHostViewAura(widget); |
| 3329 } | 3329 } |
| 3330 | 3330 |
| 3331 // static | 3331 // static |
| 3332 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { | 3332 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { |
| 3333 GetScreenInfoForWindow(results, NULL); | 3333 GetScreenInfoForWindow(results, NULL); |
| 3334 } | 3334 } |
| 3335 | 3335 |
| 3336 } // namespace content | 3336 } // namespace content |
| OLD | NEW |