OLD | NEW |
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/input/synthetic_gesture_target_base.h" | 10 #include "content/browser/renderer_host/input/synthetic_gesture_target_base.h" |
11 #include "content/browser/renderer_host/render_process_host_impl.h" | 11 #include "content/browser/renderer_host/render_process_host_impl.h" |
12 #include "content/browser/renderer_host/render_widget_host_impl.h" | 12 #include "content/browser/renderer_host/render_widget_host_impl.h" |
13 #include "content/common/content_switches_internal.h" | 13 #include "content/common/content_switches_internal.h" |
14 #include "content/port/browser/render_widget_host_view_frame_subscriber.h" | 14 #include "content/public/browser/render_widget_host_view_frame_subscriber.h" |
15 #include "third_party/WebKit/public/platform/WebScreenInfo.h" | 15 #include "third_party/WebKit/public/platform/WebScreenInfo.h" |
16 #include "ui/gfx/display.h" | 16 #include "ui/gfx/display.h" |
17 #include "ui/gfx/screen.h" | 17 #include "ui/gfx/screen.h" |
18 #include "ui/gfx/size_conversions.h" | 18 #include "ui/gfx/size_conversions.h" |
19 #include "ui/gfx/size_f.h" | 19 #include "ui/gfx/size_f.h" |
20 | 20 |
21 #if defined(OS_WIN) | 21 #if defined(OS_WIN) |
22 #include "base/command_line.h" | 22 #include "base/command_line.h" |
23 #include "base/message_loop/message_loop.h" | 23 #include "base/message_loop/message_loop.h" |
24 #include "base/win/wrapped_window_proc.h" | 24 #include "base/win/wrapped_window_proc.h" |
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 | 588 |
589 gfx::Size RenderWidgetHostViewBase::GetVisibleViewportSize() const { | 589 gfx::Size RenderWidgetHostViewBase::GetVisibleViewportSize() const { |
590 return GetViewBounds().size(); | 590 return GetViewBounds().size(); |
591 } | 591 } |
592 | 592 |
593 void RenderWidgetHostViewBase::SetInsets(const gfx::Insets& insets) { | 593 void RenderWidgetHostViewBase::SetInsets(const gfx::Insets& insets) { |
594 NOTIMPLEMENTED(); | 594 NOTIMPLEMENTED(); |
595 } | 595 } |
596 | 596 |
597 } // namespace content | 597 } // namespace content |
OLD | NEW |