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

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

Issue 19618002: Use a direct include of the message_loop header in content/, part 2. (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/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 "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/debug/trace_event.h" 10 #include "base/debug/trace_event.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/message_loop.h" 12 #include "base/message_loop/message_loop.h"
13 #include "base/strings/string_number_conversions.h" 13 #include "base/strings/string_number_conversions.h"
14 #include "cc/output/compositor_frame.h" 14 #include "cc/output/compositor_frame.h"
15 #include "cc/output/compositor_frame_ack.h" 15 #include "cc/output/compositor_frame_ack.h"
16 #include "cc/output/copy_output_request.h" 16 #include "cc/output/copy_output_request.h"
17 #include "cc/output/copy_output_result.h" 17 #include "cc/output/copy_output_result.h"
18 #include "cc/resources/texture_mailbox.h" 18 #include "cc/resources/texture_mailbox.h"
19 #include "content/browser/accessibility/browser_accessibility_manager.h" 19 #include "content/browser/accessibility/browser_accessibility_manager.h"
20 #include "content/browser/accessibility/browser_accessibility_state_impl.h" 20 #include "content/browser/accessibility/browser_accessibility_state_impl.h"
21 #include "content/browser/renderer_host/backing_store_aura.h" 21 #include "content/browser/renderer_host/backing_store_aura.h"
22 #include "content/browser/renderer_host/dip_util.h" 22 #include "content/browser/renderer_host/dip_util.h"
(...skipping 3091 matching lines...) Expand 10 before | Expand all | Expand 10 after
3114 RenderWidgetHost* widget) { 3114 RenderWidgetHost* widget) {
3115 return new RenderWidgetHostViewAura(widget); 3115 return new RenderWidgetHostViewAura(widget);
3116 } 3116 }
3117 3117
3118 // static 3118 // static
3119 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { 3119 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) {
3120 GetScreenInfoForWindow(results, NULL); 3120 GetScreenInfoForWindow(results, NULL);
3121 } 3121 }
3122 3122
3123 } // namespace content 3123 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698