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

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

Issue 68683009: Rewrite include paths for Blink public/ headers that have moved (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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_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/gpu/gpu_data_manager_impl.h" 9 #include "content/browser/gpu/gpu_data_manager_impl.h"
10 #include "content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture. h" 10 #include "content/browser/renderer_host/basic_mouse_wheel_smooth_scroll_gesture. h"
11 #include "content/browser/renderer_host/input/synthetic_gesture_target_base.h" 11 #include "content/browser/renderer_host/input/synthetic_gesture_target_base.h"
12 #include "content/browser/renderer_host/render_process_host_impl.h" 12 #include "content/browser/renderer_host/render_process_host_impl.h"
13 #include "content/browser/renderer_host/render_widget_host_impl.h" 13 #include "content/browser/renderer_host/render_widget_host_impl.h"
14 #include "content/port/browser/render_widget_host_view_frame_subscriber.h" 14 #include "content/port/browser/render_widget_host_view_frame_subscriber.h"
15 #include "content/port/browser/synthetic_gesture.h" 15 #include "content/port/browser/synthetic_gesture.h"
16 #include "third_party/WebKit/public/web/WebScreenInfo.h" 16 #include "third_party/WebKit/public/platform/WebScreenInfo.h"
17 #include "ui/gfx/display.h" 17 #include "ui/gfx/display.h"
18 #include "ui/gfx/screen.h" 18 #include "ui/gfx/screen.h"
19 #include "ui/gfx/size_conversions.h" 19 #include "ui/gfx/size_conversions.h"
20 #include "ui/gfx/size_f.h" 20 #include "ui/gfx/size_f.h"
21 21
22 #if defined(OS_WIN) 22 #if defined(OS_WIN)
23 #include "base/command_line.h" 23 #include "base/command_line.h"
24 #include "base/message_loop/message_loop.h" 24 #include "base/message_loop/message_loop.h"
25 #include "base/win/wrapped_window_proc.h" 25 #include "base/win/wrapped_window_proc.h"
26 #include "content/browser/plugin_process_host.h" 26 #include "content/browser/plugin_process_host.h"
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 580
581 uint32 RenderWidgetHostViewBase::RendererFrameNumber() { 581 uint32 RenderWidgetHostViewBase::RendererFrameNumber() {
582 return renderer_frame_number_; 582 return renderer_frame_number_;
583 } 583 }
584 584
585 void RenderWidgetHostViewBase::DidReceiveRendererFrame() { 585 void RenderWidgetHostViewBase::DidReceiveRendererFrame() {
586 ++renderer_frame_number_; 586 ++renderer_frame_number_;
587 } 587 }
588 588
589 } // namespace content 589 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698