OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/renderer/webplugin_delegate_proxy.h" | 5 #include "chrome/renderer/webplugin_delegate_proxy.h" |
6 | 6 |
7 #if defined(TOOLKIT_USES_GTK) | 7 #if defined(TOOLKIT_USES_GTK) |
8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
9 #endif | 9 #endif |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "chrome/renderer/command_buffer_proxy.h" | 29 #include "chrome/renderer/command_buffer_proxy.h" |
30 #include "chrome/renderer/plugin_channel_host.h" | 30 #include "chrome/renderer/plugin_channel_host.h" |
31 #include "chrome/renderer/render_thread.h" | 31 #include "chrome/renderer/render_thread.h" |
32 #include "chrome/renderer/render_view.h" | 32 #include "chrome/renderer/render_view.h" |
33 #include "gfx/blit.h" | 33 #include "gfx/blit.h" |
34 #include "gfx/canvas_skia.h" | 34 #include "gfx/canvas_skia.h" |
35 #include "gfx/native_widget_types.h" | 35 #include "gfx/native_widget_types.h" |
36 #include "gfx/size.h" | 36 #include "gfx/size.h" |
37 #include "grit/generated_resources.h" | 37 #include "grit/generated_resources.h" |
38 #include "grit/renderer_resources.h" | 38 #include "grit/renderer_resources.h" |
| 39 #include "ipc/ipc_channel_handle.h" |
39 #include "net/base/mime_util.h" | 40 #include "net/base/mime_util.h" |
40 #include "printing/native_metafile.h" | 41 #include "printing/native_metafile.h" |
41 #include "skia/ext/platform_canvas.h" | 42 #include "skia/ext/platform_canvas.h" |
42 #include "third_party/WebKit/WebKit/chromium/public/WebBindings.h" | 43 #include "third_party/WebKit/WebKit/chromium/public/WebBindings.h" |
43 #include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h" | 44 #include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h" |
44 #include "third_party/WebKit/WebKit/chromium/public/WebDragData.h" | 45 #include "third_party/WebKit/WebKit/chromium/public/WebDragData.h" |
45 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" | 46 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" |
46 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" | 47 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
47 #include "third_party/WebKit/WebKit/chromium/public/WebVector.h" | 48 #include "third_party/WebKit/WebKit/chromium/public/WebVector.h" |
48 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" | 49 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" |
(...skipping 1509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1558 if (index->mime_type == "application/x-vnd.moveplayer.qm" || | 1559 if (index->mime_type == "application/x-vnd.moveplayer.qm" || |
1559 index->mime_type == "application/x-vnd.moveplay2.qm" || | 1560 index->mime_type == "application/x-vnd.moveplay2.qm" || |
1560 index->mime_type == "application/x-vnd.movenetworks.qm" || | 1561 index->mime_type == "application/x-vnd.movenetworks.qm" || |
1561 index->mime_type == "application/x-vnd.mnplayer.qm") { | 1562 index->mime_type == "application/x-vnd.mnplayer.qm") { |
1562 return true; | 1563 return true; |
1563 } | 1564 } |
1564 } | 1565 } |
1565 return false; | 1566 return false; |
1566 } | 1567 } |
1567 #endif | 1568 #endif |
OLD | NEW |