| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 #include "ui/compositor/compositor_vsync_manager.h" | 76 #include "ui/compositor/compositor_vsync_manager.h" |
| 77 #include "ui/compositor/dip_util.h" | 77 #include "ui/compositor/dip_util.h" |
| 78 #include "ui/display/display.h" | 78 #include "ui/display/display.h" |
| 79 #include "ui/display/screen.h" | 79 #include "ui/display/screen.h" |
| 80 #include "ui/events/blink/blink_event_util.h" | 80 #include "ui/events/blink/blink_event_util.h" |
| 81 #include "ui/events/event.h" | 81 #include "ui/events/event.h" |
| 82 #include "ui/events/event_utils.h" | 82 #include "ui/events/event_utils.h" |
| 83 #include "ui/events/gesture_detection/gesture_configuration.h" | 83 #include "ui/events/gesture_detection/gesture_configuration.h" |
| 84 #include "ui/events/gestures/gesture_recognizer.h" | 84 #include "ui/events/gestures/gesture_recognizer.h" |
| 85 #include "ui/gfx/canvas.h" | 85 #include "ui/gfx/canvas.h" |
| 86 #include "ui/gfx/color_profile.h" | |
| 87 #include "ui/gfx/geometry/dip_util.h" | 86 #include "ui/gfx/geometry/dip_util.h" |
| 88 #include "ui/gfx/geometry/rect_conversions.h" | 87 #include "ui/gfx/geometry/rect_conversions.h" |
| 89 #include "ui/gfx/geometry/size_conversions.h" | 88 #include "ui/gfx/geometry/size_conversions.h" |
| 90 #include "ui/gfx/skia_util.h" | 89 #include "ui/gfx/skia_util.h" |
| 91 #include "ui/touch_selection/touch_selection_controller.h" | 90 #include "ui/touch_selection/touch_selection_controller.h" |
| 92 #include "ui/wm/public/activation_client.h" | 91 #include "ui/wm/public/activation_client.h" |
| 93 #include "ui/wm/public/scoped_tooltip_disabler.h" | 92 #include "ui/wm/public/scoped_tooltip_disabler.h" |
| 94 #include "ui/wm/public/tooltip_client.h" | 93 #include "ui/wm/public/tooltip_client.h" |
| 95 #include "ui/wm/public/transient_window_client.h" | 94 #include "ui/wm/public/transient_window_client.h" |
| 96 #include "ui/wm/public/window_types.h" | 95 #include "ui/wm/public/window_types.h" |
| (...skipping 2941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3038 | 3037 |
| 3039 //////////////////////////////////////////////////////////////////////////////// | 3038 //////////////////////////////////////////////////////////////////////////////// |
| 3040 // RenderWidgetHostViewBase, public: | 3039 // RenderWidgetHostViewBase, public: |
| 3041 | 3040 |
| 3042 // static | 3041 // static |
| 3043 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { | 3042 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { |
| 3044 GetScreenInfoForWindow(results, NULL); | 3043 GetScreenInfoForWindow(results, NULL); |
| 3045 } | 3044 } |
| 3046 | 3045 |
| 3047 } // namespace content | 3046 } // namespace content |
| OLD | NEW |