Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_win.cc

Issue 22299004: Move a #include from render_widget_host_view_win.h to *.cc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_win.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_win.h" 5 #include "content/browser/renderer_host/render_widget_host_view_win.h"
6 6
7 #include <InputScope.h> 7 #include <InputScope.h>
8 #include <wtsapi32.h> 8 #include <wtsapi32.h>
9 #pragma comment(lib, "wtsapi32.lib") 9 #pragma comment(lib, "wtsapi32.lib")
10 10
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 #include "content/public/common/content_switches.h" 52 #include "content/public/common/content_switches.h"
53 #include "content/public/common/page_zoom.h" 53 #include "content/public/common/page_zoom.h"
54 #include "content/public/common/process_type.h" 54 #include "content/public/common/process_type.h"
55 #include "skia/ext/skia_utils_win.h" 55 #include "skia/ext/skia_utils_win.h"
56 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" 56 #include "third_party/WebKit/public/web/WebCompositionUnderline.h"
57 #include "third_party/WebKit/public/web/WebInputEvent.h" 57 #include "third_party/WebKit/public/web/WebInputEvent.h"
58 #include "third_party/skia/include/core/SkRegion.h" 58 #include "third_party/skia/include/core/SkRegion.h"
59 #include "ui/base/events/event.h" 59 #include "ui/base/events/event.h"
60 #include "ui/base/events/event_utils.h" 60 #include "ui/base/events/event_utils.h"
61 #include "ui/base/ime/composition_text.h" 61 #include "ui/base/ime/composition_text.h"
62 #include "ui/base/ime/win/imm32_manager.h"
62 #include "ui/base/ime/win/tsf_input_scope.h" 63 #include "ui/base/ime/win/tsf_input_scope.h"
63 #include "ui/base/l10n/l10n_util_win.h" 64 #include "ui/base/l10n/l10n_util_win.h"
64 #include "ui/base/text/text_elider.h" 65 #include "ui/base/text/text_elider.h"
65 #include "ui/base/touch/touch_device.h" 66 #include "ui/base/touch/touch_device.h"
66 #include "ui/base/touch/touch_enabled.h" 67 #include "ui/base/touch/touch_enabled.h"
67 #include "ui/base/ui_base_switches.h" 68 #include "ui/base/ui_base_switches.h"
68 #include "ui/base/view_prop.h" 69 #include "ui/base/view_prop.h"
69 #include "ui/base/win/dpi.h" 70 #include "ui/base/win/dpi.h"
70 #include "ui/base/win/hwnd_util.h" 71 #include "ui/base/win/hwnd_util.h"
71 #include "ui/base/win/mouse_wheel_util.h" 72 #include "ui/base/win/mouse_wheel_util.h"
(...skipping 3104 matching lines...) Expand 10 before | Expand all | Expand 10 after
3176 return new RenderWidgetHostViewWin(widget); 3177 return new RenderWidgetHostViewWin(widget);
3177 } 3178 }
3178 3179
3179 // static 3180 // static
3180 void RenderWidgetHostViewPort::GetDefaultScreenInfo( 3181 void RenderWidgetHostViewPort::GetDefaultScreenInfo(
3181 WebKit::WebScreenInfo* results) { 3182 WebKit::WebScreenInfo* results) {
3182 GetScreenInfoForWindow(0, results); 3183 GetScreenInfoForWindow(0, results);
3183 } 3184 }
3184 3185
3185 } // namespace content 3186 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_win.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698