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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 #include "ui/wm/public/activation_client.h" | 93 #include "ui/wm/public/activation_client.h" |
94 #include "ui/wm/public/scoped_tooltip_disabler.h" | 94 #include "ui/wm/public/scoped_tooltip_disabler.h" |
95 #include "ui/wm/public/tooltip_client.h" | 95 #include "ui/wm/public/tooltip_client.h" |
96 #include "ui/wm/public/transient_window_client.h" | 96 #include "ui/wm/public/transient_window_client.h" |
97 #include "ui/wm/public/window_types.h" | 97 #include "ui/wm/public/window_types.h" |
98 | 98 |
99 #if defined(OS_WIN) | 99 #if defined(OS_WIN) |
100 #include "content/browser/accessibility/browser_accessibility_manager_win.h" | 100 #include "content/browser/accessibility/browser_accessibility_manager_win.h" |
101 #include "content/browser/accessibility/browser_accessibility_win.h" | 101 #include "content/browser/accessibility/browser_accessibility_win.h" |
102 #include "content/browser/renderer_host/legacy_render_widget_host_win.h" | 102 #include "content/browser/renderer_host/legacy_render_widget_host_win.h" |
103 #include "content/common/plugin_constants_win.h" | |
104 #include "ui/base/win/hidden_window.h" | 103 #include "ui/base/win/hidden_window.h" |
105 #include "ui/display/win/screen_win.h" | 104 #include "ui/display/win/screen_win.h" |
106 #include "ui/gfx/gdi_util.h" | 105 #include "ui/gfx/gdi_util.h" |
107 #include "ui/gfx/win/dpi.h" | 106 #include "ui/gfx/win/dpi.h" |
108 #endif | 107 #endif |
109 | 108 |
110 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 109 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
111 #include "content/common/input_messages.h" | 110 #include "content/common/input_messages.h" |
112 #include "ui/events/linux/text_edit_command_auralinux.h" | 111 #include "ui/events/linux/text_edit_command_auralinux.h" |
113 #include "ui/events/linux/text_edit_key_bindings_delegate_auralinux.h" | 112 #include "ui/events/linux/text_edit_key_bindings_delegate_auralinux.h" |
(...skipping 2816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2930 | 2929 |
2931 //////////////////////////////////////////////////////////////////////////////// | 2930 //////////////////////////////////////////////////////////////////////////////// |
2932 // RenderWidgetHostViewBase, public: | 2931 // RenderWidgetHostViewBase, public: |
2933 | 2932 |
2934 // static | 2933 // static |
2935 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { | 2934 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { |
2936 GetScreenInfoForWindow(results, NULL); | 2935 GetScreenInfoForWindow(results, NULL); |
2937 } | 2936 } |
2938 | 2937 |
2939 } // namespace content | 2938 } // namespace content |
OLD | NEW |