| 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 2408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2482 } | 2482 } |
| 2483 | 2483 |
| 2484 void RenderWidgetHostImpl::DetachDelegate() { | 2484 void RenderWidgetHostImpl::DetachDelegate() { |
| 2485 delegate_ = NULL; | 2485 delegate_ = NULL; |
| 2486 } | 2486 } |
| 2487 | 2487 |
| 2488 void RenderWidgetHostImpl::FrameSwapped(const cc::LatencyInfo& latency_info) { | 2488 void RenderWidgetHostImpl::FrameSwapped(const cc::LatencyInfo& latency_info) { |
| 2489 } | 2489 } |
| 2490 | 2490 |
| 2491 } // namespace content | 2491 } // namespace content |
| OLD | NEW |