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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_base.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_base.h" 5 #include "content/browser/renderer_host/render_widget_host_view_base.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/browser/accessibility/browser_accessibility_manager.h" 8 #include "content/browser/accessibility/browser_accessibility_manager.h"
9 #include "content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture. h" 9 #include "content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture. h"
10 #include "content/browser/renderer_host/render_process_host_impl.h" 10 #include "content/browser/renderer_host/render_process_host_impl.h"
11 #include "content/browser/renderer_host/render_widget_host_impl.h" 11 #include "content/browser/renderer_host/render_widget_host_impl.h"
12 #include "content/port/browser/render_widget_host_view_frame_subscriber.h" 12 #include "content/port/browser/render_widget_host_view_frame_subscriber.h"
13 #include "content/port/browser/smooth_scroll_gesture.h" 13 #include "content/port/browser/smooth_scroll_gesture.h"
14 #include "third_party/WebKit/public/web/WebScreenInfo.h" 14 #include "third_party/WebKit/public/web/WebScreenInfo.h"
15 #include "ui/gfx/display.h" 15 #include "ui/gfx/display.h"
16 #include "ui/gfx/screen.h" 16 #include "ui/gfx/screen.h"
17 #include "ui/gfx/size_conversions.h" 17 #include "ui/gfx/size_conversions.h"
18 #include "ui/gfx/size_f.h" 18 #include "ui/gfx/size_f.h"
19 19
20 #if defined(OS_WIN) 20 #if defined(OS_WIN)
21 #include "base/command_line.h" 21 #include "base/command_line.h"
22 #include "base/message_loop.h" 22 #include "base/message_loop/message_loop.h"
23 #include "base/win/wrapped_window_proc.h" 23 #include "base/win/wrapped_window_proc.h"
24 #include "content/browser/plugin_process_host.h" 24 #include "content/browser/plugin_process_host.h"
25 #include "content/public/browser/browser_thread.h" 25 #include "content/public/browser/browser_thread.h"
26 #include "content/public/browser/child_process_data.h" 26 #include "content/public/browser/child_process_data.h"
27 #include "content/public/common/content_switches.h" 27 #include "content/public/common/content_switches.h"
28 #include "ui/base/win/dpi.h" 28 #include "ui/base/win/dpi.h"
29 #include "ui/base/win/hwnd_util.h" 29 #include "ui/base/win/hwnd_util.h"
30 #include "ui/gfx/gdi_util.h" 30 #include "ui/gfx/gdi_util.h"
31 #include "webkit/plugins/npapi/plugin_constants_win.h" 31 #include "webkit/plugins/npapi/plugin_constants_win.h"
32 #include "webkit/plugins/npapi/webplugin.h" 32 #include "webkit/plugins/npapi/webplugin.h"
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 524
525 uint32 RenderWidgetHostViewBase::RendererFrameNumber() { 525 uint32 RenderWidgetHostViewBase::RendererFrameNumber() {
526 return renderer_frame_number_; 526 return renderer_frame_number_;
527 } 527 }
528 528
529 void RenderWidgetHostViewBase::DidReceiveRendererFrame() { 529 void RenderWidgetHostViewBase::DidReceiveRendererFrame() {
530 ++renderer_frame_number_; 530 ++renderer_frame_number_;
531 } 531 }
532 532
533 } // namespace content 533 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698