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/renderer/render_widget.h" | 5 #include "content/renderer/render_widget.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h" | 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h" |
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenuInfo.h" | 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenuInfo.h" |
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRange.h" | 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRange.h" |
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
31 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPoint.h" | 31 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPoint.h" |
32 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h" | 32 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h" |
33 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h" | 33 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h" |
34 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 34 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
35 #include "third_party/skia/include/core/SkShader.h" | 35 #include "third_party/skia/include/core/SkShader.h" |
36 #include "third_party/skia/include/effects/SkTableColorFilter.h" | 36 #include "third_party/skia/include/effects/SkTableColorFilter.h" |
37 #include "ui/gfx/gl/gl_switches.h" | |
38 #include "ui/gfx/point.h" | 37 #include "ui/gfx/point.h" |
39 #include "ui/gfx/size.h" | 38 #include "ui/gfx/size.h" |
40 #include "ui/gfx/skia_util.h" | 39 #include "ui/gfx/skia_util.h" |
| 40 #include "ui/gl/gl_switches.h" |
41 #include "ui/surface/transport_dib.h" | 41 #include "ui/surface/transport_dib.h" |
42 #include "webkit/glue/webkit_glue.h" | 42 #include "webkit/glue/webkit_glue.h" |
43 #include "webkit/plugins/npapi/webplugin.h" | 43 #include "webkit/plugins/npapi/webplugin.h" |
44 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 44 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
45 | 45 |
46 #if defined(OS_POSIX) | 46 #if defined(OS_POSIX) |
47 #include "ipc/ipc_channel_posix.h" | 47 #include "ipc/ipc_channel_posix.h" |
48 #include "third_party/skia/include/core/SkMallocPixelRef.h" | 48 #include "third_party/skia/include/core/SkMallocPixelRef.h" |
49 #include "third_party/skia/include/core/SkPixelRef.h" | 49 #include "third_party/skia/include/core/SkPixelRef.h" |
50 #endif // defined(OS_POSIX) | 50 #endif // defined(OS_POSIX) |
(...skipping 1655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1706 } | 1706 } |
1707 } | 1707 } |
1708 | 1708 |
1709 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) { | 1709 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) { |
1710 return false; | 1710 return false; |
1711 } | 1711 } |
1712 | 1712 |
1713 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const { | 1713 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const { |
1714 return false; | 1714 return false; |
1715 } | 1715 } |
OLD | NEW |