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

Side by Side Diff: content/renderer/render_widget.cc

Issue 19620002: Use a direct include of the message_loop header in content/, part 4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
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/renderer/render_widget.h" 5 #include "content/renderer/render_widget.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/debug/trace_event.h" 9 #include "base/debug/trace_event.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/singleton.h" 12 #include "base/memory/singleton.h"
13 #include "base/message_loop.h" 13 #include "base/message_loop/message_loop.h"
14 #include "base/metrics/histogram.h" 14 #include "base/metrics/histogram.h"
15 #include "base/stl_util.h" 15 #include "base/stl_util.h"
16 #include "base/strings/utf_string_conversions.h" 16 #include "base/strings/utf_string_conversions.h"
17 #include "build/build_config.h" 17 #include "build/build_config.h"
18 #include "cc/base/switches.h" 18 #include "cc/base/switches.h"
19 #include "cc/output/output_surface.h" 19 #include "cc/output/output_surface.h"
20 #include "cc/trees/layer_tree_host.h" 20 #include "cc/trees/layer_tree_host.h"
21 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" 21 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h"
22 #include "content/common/input_messages.h" 22 #include "content/common/input_messages.h"
23 #include "content/common/swapped_out_messages.h" 23 #include "content/common/swapped_out_messages.h"
24 #include "content/common/view_messages.h" 24 #include "content/common/view_messages.h"
25 #include "content/public/common/content_switches.h" 25 #include "content/public/common/content_switches.h"
26 #include "content/renderer/gpu/compositor_output_surface.h" 26 #include "content/renderer/gpu/compositor_output_surface.h"
27 #include "content/renderer/gpu/compositor_software_output_device.h" 27 #include "content/renderer/gpu/compositor_software_output_device.h"
28 #include "content/renderer/gpu/delegated_compositor_output_surface.h" 28 #include "content/renderer/gpu/delegated_compositor_output_surface.h"
29 #include "content/renderer/gpu/input_handler_manager.h" 29 #include "content/renderer/gpu/input_handler_manager.h"
30 #include "content/renderer/gpu/mailbox_output_surface.h" 30 #include "content/renderer/gpu/mailbox_output_surface.h"
31 #include "content/renderer/gpu/render_widget_compositor.h" 31 #include "content/renderer/gpu/render_widget_compositor.h"
32 #include "content/renderer/ime_event_guard.h" 32 #include "content/renderer/ime_event_guard.h"
33 #include "content/renderer/render_process.h" 33 #include "content/renderer/render_process.h"
34 #include "content/renderer/render_process_visibility_manager.h" 34 #include "content/renderer/render_process_visibility_manager.h"
35 #include "content/renderer/render_thread_impl.h" 35 #include "content/renderer/render_thread_impl.h"
36 #include "content/renderer/renderer_webkitplatformsupport_impl.h" 36 #include "content/renderer/renderer_webkitplatformsupport_impl.h"
37 #include "ipc/ipc_sync_message.h" 37 #include "ipc/ipc_sync_message.h"
38 #include "skia/ext/platform_canvas.h" 38 #include "skia/ext/platform_canvas.h"
39 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h"
40 #include "third_party/WebKit/public/platform/WebPoint.h"
41 #include "third_party/WebKit/public/platform/WebRect.h"
42 #include "third_party/WebKit/public/platform/WebSize.h"
43 #include "third_party/WebKit/public/platform/WebString.h"
39 #include "third_party/WebKit/public/web/WebCursorInfo.h" 44 #include "third_party/WebKit/public/web/WebCursorInfo.h"
40 #include "third_party/WebKit/public/web/WebHelperPlugin.h" 45 #include "third_party/WebKit/public/web/WebHelperPlugin.h"
41 #include "third_party/WebKit/public/web/WebPagePopup.h" 46 #include "third_party/WebKit/public/web/WebPagePopup.h"
42 #include "third_party/WebKit/public/web/WebPopupMenu.h" 47 #include "third_party/WebKit/public/web/WebPopupMenu.h"
43 #include "third_party/WebKit/public/web/WebPopupMenuInfo.h" 48 #include "third_party/WebKit/public/web/WebPopupMenuInfo.h"
44 #include "third_party/WebKit/public/web/WebRange.h" 49 #include "third_party/WebKit/public/web/WebRange.h"
45 #include "third_party/WebKit/public/web/WebScreenInfo.h" 50 #include "third_party/WebKit/public/web/WebScreenInfo.h"
46 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h"
47 #include "third_party/WebKit/public/platform/WebPoint.h"
48 #include "third_party/WebKit/public/platform/WebRect.h"
49 #include "third_party/WebKit/public/platform/WebSize.h"
50 #include "third_party/WebKit/public/platform/WebString.h"
51 #include "third_party/skia/include/core/SkShader.h" 51 #include "third_party/skia/include/core/SkShader.h"
52 #include "ui/base/ui_base_switches.h" 52 #include "ui/base/ui_base_switches.h"
53 #include "ui/gfx/point.h" 53 #include "ui/gfx/point.h"
54 #include "ui/gfx/rect_conversions.h" 54 #include "ui/gfx/rect_conversions.h"
55 #include "ui/gfx/size_conversions.h" 55 #include "ui/gfx/size_conversions.h"
56 #include "ui/gfx/skia_util.h" 56 #include "ui/gfx/skia_util.h"
57 #include "ui/gl/gl_switches.h" 57 #include "ui/gl/gl_switches.h"
58 #include "ui/surface/transport_dib.h" 58 #include "ui/surface/transport_dib.h"
59 #include "webkit/glue/webkit_glue.h" 59 #include "webkit/glue/webkit_glue.h"
60 #include "webkit/plugins/npapi/webplugin.h" 60 #include "webkit/plugins/npapi/webplugin.h"
(...skipping 2420 matching lines...) Expand 10 before | Expand all | Expand 10 after
2481 2481
2482 if (!context->InitializeWithDefaultBufferSizes( 2482 if (!context->InitializeWithDefaultBufferSizes(
2483 attributes, 2483 attributes,
2484 false /* bind generates resources */, 2484 false /* bind generates resources */,
2485 CAUSE_FOR_GPU_LAUNCH_WEBGRAPHICSCONTEXT3DCOMMANDBUFFERIMPL_INITIALIZE) ) 2485 CAUSE_FOR_GPU_LAUNCH_WEBGRAPHICSCONTEXT3DCOMMANDBUFFERIMPL_INITIALIZE) )
2486 return NULL; 2486 return NULL;
2487 return context.release(); 2487 return context.release();
2488 } 2488 }
2489 2489
2490 } // namespace content 2490 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl_android.cc ('k') | content/renderer/render_widget_fullscreen_pepper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698