| 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/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/debug/trace_event.h" | 10 #include "base/debug/trace_event.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
| 30 #include "ui/aura/client/aura_constants.h" | 30 #include "ui/aura/client/aura_constants.h" |
| 31 #include "ui/aura/client/cursor_client.h" | 31 #include "ui/aura/client/cursor_client.h" |
| 32 #include "ui/aura/client/screen_position_client.h" | 32 #include "ui/aura/client/screen_position_client.h" |
| 33 #include "ui/aura/client/tooltip_client.h" | 33 #include "ui/aura/client/tooltip_client.h" |
| 34 #include "ui/aura/client/window_types.h" | 34 #include "ui/aura/client/window_types.h" |
| 35 #include "ui/aura/env.h" | 35 #include "ui/aura/env.h" |
| 36 #include "ui/aura/root_window.h" | 36 #include "ui/aura/root_window.h" |
| 37 #include "ui/aura/window.h" | 37 #include "ui/aura/window.h" |
| 38 #include "ui/aura/window_observer.h" | 38 #include "ui/aura/window_observer.h" |
| 39 #include "ui/base/event.h" | 39 #include "ui/base/events/event.h" |
| 40 #include "ui/base/gestures/gesture_recognizer.h" | 40 #include "ui/base/gestures/gesture_recognizer.h" |
| 41 #include "ui/base/hit_test.h" | 41 #include "ui/base/hit_test.h" |
| 42 #include "ui/base/ime/input_method.h" | 42 #include "ui/base/ime/input_method.h" |
| 43 #include "ui/base/ui_base_types.h" | 43 #include "ui/base/ui_base_types.h" |
| 44 #include "ui/compositor/compositor.h" | 44 #include "ui/compositor/compositor.h" |
| 45 #include "ui/compositor/layer.h" | 45 #include "ui/compositor/layer.h" |
| 46 #include "ui/gfx/canvas.h" | 46 #include "ui/gfx/canvas.h" |
| 47 #include "ui/gfx/display.h" | 47 #include "ui/gfx/display.h" |
| 48 #include "ui/gfx/screen.h" | 48 #include "ui/gfx/screen.h" |
| 49 #include "ui/gfx/skia_util.h" | 49 #include "ui/gfx/skia_util.h" |
| (...skipping 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1659 RenderWidgetHost* widget) { | 1659 RenderWidgetHost* widget) { |
| 1660 return new RenderWidgetHostViewAura(widget); | 1660 return new RenderWidgetHostViewAura(widget); |
| 1661 } | 1661 } |
| 1662 | 1662 |
| 1663 // static | 1663 // static |
| 1664 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { | 1664 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { |
| 1665 GetScreenInfoForWindow(results, NULL); | 1665 GetScreenInfoForWindow(results, NULL); |
| 1666 } | 1666 } |
| 1667 | 1667 |
| 1668 } // namespace content | 1668 } // namespace content |
| OLD | NEW |