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

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

Issue 1809183002: gpu_messages.h => gpu/ipc/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make win_clang_x64_dbg happy by making command_buffer_traits an alias to gpu component on compnet b… Created 4 years, 9 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
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_impl.h" 5 #include "content/browser/renderer_host/render_widget_host_impl.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 #include "content/browser/renderer_host/render_view_host_impl.h" 45 #include "content/browser/renderer_host/render_view_host_impl.h"
46 #include "content/browser/renderer_host/render_widget_helper.h" 46 #include "content/browser/renderer_host/render_widget_helper.h"
47 #include "content/browser/renderer_host/render_widget_host_delegate.h" 47 #include "content/browser/renderer_host/render_widget_host_delegate.h"
48 #include "content/browser/renderer_host/render_widget_host_input_event_router.h" 48 #include "content/browser/renderer_host/render_widget_host_input_event_router.h"
49 #include "content/browser/renderer_host/render_widget_host_owner_delegate.h" 49 #include "content/browser/renderer_host/render_widget_host_owner_delegate.h"
50 #include "content/browser/renderer_host/render_widget_host_view_base.h" 50 #include "content/browser/renderer_host/render_widget_host_view_base.h"
51 #include "content/common/content_constants_internal.h" 51 #include "content/common/content_constants_internal.h"
52 #include "content/common/content_switches_internal.h" 52 #include "content/common/content_switches_internal.h"
53 #include "content/common/cursors/webcursor.h" 53 #include "content/common/cursors/webcursor.h"
54 #include "content/common/frame_messages.h" 54 #include "content/common/frame_messages.h"
55 #include "content/common/gpu/gpu_messages.h"
56 #include "content/common/host_shared_bitmap_manager.h" 55 #include "content/common/host_shared_bitmap_manager.h"
57 #include "content/common/input_messages.h" 56 #include "content/common/input_messages.h"
58 #include "content/common/resize_params.h" 57 #include "content/common/resize_params.h"
59 #include "content/common/view_messages.h" 58 #include "content/common/view_messages.h"
60 #include "content/public/browser/native_web_keyboard_event.h" 59 #include "content/public/browser/native_web_keyboard_event.h"
61 #include "content/public/browser/notification_service.h" 60 #include "content/public/browser/notification_service.h"
62 #include "content/public/browser/notification_types.h" 61 #include "content/public/browser/notification_types.h"
63 #include "content/public/browser/render_widget_host_iterator.h" 62 #include "content/public/browser/render_widget_host_iterator.h"
64 #include "content/public/common/content_constants.h" 63 #include "content/public/common/content_constants.h"
65 #include "content/public/common/content_switches.h" 64 #include "content/public/common/content_switches.h"
66 #include "content/public/common/result_codes.h" 65 #include "content/public/common/result_codes.h"
67 #include "content/public/common/web_preferences.h" 66 #include "content/public/common/web_preferences.h"
68 #include "gpu/GLES2/gl2extchromium.h" 67 #include "gpu/GLES2/gl2extchromium.h"
69 #include "gpu/command_buffer/service/gpu_switches.h" 68 #include "gpu/command_buffer/service/gpu_switches.h"
69 #include "gpu/ipc/common/gpu_messages.h"
70 #include "skia/ext/image_operations.h" 70 #include "skia/ext/image_operations.h"
71 #include "skia/ext/platform_canvas.h" 71 #include "skia/ext/platform_canvas.h"
72 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" 72 #include "third_party/WebKit/public/web/WebCompositionUnderline.h"
73 #include "ui/events/event.h" 73 #include "ui/events/event.h"
74 #include "ui/events/keycodes/keyboard_codes.h" 74 #include "ui/events/keycodes/keyboard_codes.h"
75 #include "ui/gfx/geometry/size_conversions.h" 75 #include "ui/gfx/geometry/size_conversions.h"
76 #include "ui/gfx/geometry/vector2d_conversions.h" 76 #include "ui/gfx/geometry/vector2d_conversions.h"
77 #include "ui/gfx/skbitmap_operations.h" 77 #include "ui/gfx/skbitmap_operations.h"
78 #include "ui/snapshot/snapshot.h" 78 #include "ui/snapshot/snapshot.h"
79 79
(...skipping 2154 matching lines...) Expand 10 before | Expand all | Expand 10 after
2234 } 2234 }
2235 2235
2236 #if defined(OS_WIN) 2236 #if defined(OS_WIN)
2237 gfx::NativeViewAccessible 2237 gfx::NativeViewAccessible
2238 RenderWidgetHostImpl::GetParentNativeViewAccessible() { 2238 RenderWidgetHostImpl::GetParentNativeViewAccessible() {
2239 return delegate_ ? delegate_->GetParentNativeViewAccessible() : NULL; 2239 return delegate_ ? delegate_->GetParentNativeViewAccessible() : NULL;
2240 } 2240 }
2241 #endif 2241 #endif
2242 2242
2243 } // namespace content 2243 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/gpu/browser_gpu_channel_host_factory.cc ('k') | content/browser/renderer_host/render_widget_host_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698