Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(584)

Side by Side Diff: chrome/renderer/webplugin_delegate_proxy.cc

Issue 3855001: Move scoped_cftyperef from base to base/mac, use the new namespace, and name ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/webplugin_delegate_pepper.cc ('k') | gfx/blit.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/renderer/webplugin_delegate_pepper.cc ('k') | gfx/blit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698