OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" | 48 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
49 #include "third_party/WebKit/WebKit/chromium/public/WebVector.h" | 49 #include "third_party/WebKit/WebKit/chromium/public/WebVector.h" |
50 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" | 50 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" |
51 #include "webkit/glue/plugins/webplugin.h" | 51 #include "webkit/glue/plugins/webplugin.h" |
52 #include "webkit/glue/webkit_glue.h" | 52 #include "webkit/glue/webkit_glue.h" |
53 | 53 |
54 #if defined(OS_POSIX) | 54 #if defined(OS_POSIX) |
55 #include "ipc/ipc_channel_posix.h" | 55 #include "ipc/ipc_channel_posix.h" |
56 #endif | 56 #endif |
57 | 57 |
58 #if defined(OS_MACOSX) | |
59 #include "base/scoped_cftyperef.h" | |
60 #endif | |
61 | |
62 using WebKit::WebBindings; | 58 using WebKit::WebBindings; |
63 using WebKit::WebCursorInfo; | 59 using WebKit::WebCursorInfo; |
64 using WebKit::WebDragData; | 60 using WebKit::WebDragData; |
65 using WebKit::WebInputEvent; | 61 using WebKit::WebInputEvent; |
66 using WebKit::WebString; | 62 using WebKit::WebString; |
67 using WebKit::WebVector; | 63 using WebKit::WebVector; |
68 using WebKit::WebView; | 64 using WebKit::WebView; |
69 | 65 |
70 // Proxy for WebPluginResourceClient. The object owns itself after creation, | 66 // Proxy for WebPluginResourceClient. The object owns itself after creation, |
71 // deleting itself after its callback has been called. | 67 // deleting itself after its callback has been called. |
(...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1552 if (index->mime_type == "application/x-vnd.moveplayer.qm" || | 1548 if (index->mime_type == "application/x-vnd.moveplayer.qm" || |
1553 index->mime_type == "application/x-vnd.moveplay2.qm" || | 1549 index->mime_type == "application/x-vnd.moveplay2.qm" || |
1554 index->mime_type == "application/x-vnd.movenetworks.qm" || | 1550 index->mime_type == "application/x-vnd.movenetworks.qm" || |
1555 index->mime_type == "application/x-vnd.mnplayer.qm") { | 1551 index->mime_type == "application/x-vnd.mnplayer.qm") { |
1556 return true; | 1552 return true; |
1557 } | 1553 } |
1558 } | 1554 } |
1559 return false; | 1555 return false; |
1560 } | 1556 } |
1561 #endif | 1557 #endif |
OLD | NEW |