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_impl.h" | 5 #include "content/browser/renderer_host/render_widget_host_impl.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 #include "skia/ext/platform_canvas.h" | 53 #include "skia/ext/platform_canvas.h" |
54 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 54 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
55 #if defined(OS_WIN) | 55 #if defined(OS_WIN) |
56 #include "third_party/WebKit/Source/WebKit/chromium/public/win/WebScreenInfoFact
ory.h" | 56 #include "third_party/WebKit/Source/WebKit/chromium/public/win/WebScreenInfoFact
ory.h" |
57 #endif | 57 #endif |
58 #include "ui/base/events/event.h" | 58 #include "ui/base/events/event.h" |
59 #include "ui/base/keycodes/keyboard_codes.h" | 59 #include "ui/base/keycodes/keyboard_codes.h" |
60 #include "ui/gfx/size_conversions.h" | 60 #include "ui/gfx/size_conversions.h" |
61 #include "ui/gfx/skbitmap_operations.h" | 61 #include "ui/gfx/skbitmap_operations.h" |
62 #include "ui/gfx/vector2d_conversions.h" | 62 #include "ui/gfx/vector2d_conversions.h" |
63 #include "webkit/glue/webcursor.h" | 63 #include "webkit/common/cursors/webcursor.h" |
64 #include "webkit/glue/webpreferences.h" | 64 #include "webkit/glue/webpreferences.h" |
65 #include "webkit/plugins/npapi/webplugin.h" | 65 #include "webkit/plugins/npapi/webplugin.h" |
66 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" | 66 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" |
67 | 67 |
68 #if defined(TOOLKIT_GTK) | 68 #if defined(TOOLKIT_GTK) |
69 #include "content/browser/renderer_host/backing_store_gtk.h" | 69 #include "content/browser/renderer_host/backing_store_gtk.h" |
70 #elif defined(OS_MACOSX) | 70 #elif defined(OS_MACOSX) |
71 #include "content/browser/renderer_host/backing_store_mac.h" | 71 #include "content/browser/renderer_host/backing_store_mac.h" |
72 #endif | 72 #endif |
73 | 73 |
(...skipping 2424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2498 } | 2498 } |
2499 | 2499 |
2500 void RenderWidgetHostImpl::DetachDelegate() { | 2500 void RenderWidgetHostImpl::DetachDelegate() { |
2501 delegate_ = NULL; | 2501 delegate_ = NULL; |
2502 } | 2502 } |
2503 | 2503 |
2504 void RenderWidgetHostImpl::FrameSwapped(const ui::LatencyInfo& latency_info) { | 2504 void RenderWidgetHostImpl::FrameSwapped(const ui::LatencyInfo& latency_info) { |
2505 } | 2505 } |
2506 | 2506 |
2507 } // namespace content | 2507 } // namespace content |
OLD | NEW |