summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/npapi/webplugin_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* Cleanup: Remove static storage for variables in an unnamed namespace.jhawkins@chromium.org2012-01-281-5/+6
| | | | | | | | | | BUG=none TEST=none R=binji Review URL: https://chromiumcodereview.appspot.com/9271061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119535 0039d316-1c4b-4281-b951-d872f2087c98
* Use references instead of pointers for WebPlugin::getFormValue().bashi@chromium.org2011-12-141-2/+2
| | | | | | | | | | | | | We should use a reference an output argument to follow the WebKit coding conventions. TEST=compiled. BUG=88896 Review URL: http://codereview.chromium.org/8912003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114338 0039d316-1c4b-4281-b951-d872f2087c98
* Update these includes to use the new header locationsabarth@chromium.org2011-12-031-11/+11
| | | | | | | TBR=darin Review URL: http://codereview.chromium.org/8787003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112824 0039d316-1c4b-4281-b951-d872f2087c98
* Render Core Animation plugins through WebKit's compositor rather thankbr@chromium.org2011-11-301-18/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | directly to the screen in the browser process. The new composited code path is now the default, though the old code path has been left in place under a command line flag while we gain confidence. Issue 105344 has been filed about removing the old code path. The new code path does not currently support 10.5. The consequence is that plugins using the InvalidatingCoreAnimation rendering model will not work on this version of Mac OS. Pepper 3D is not affected; it now uses a different rendering path. Changed the type of IOSurfaces' IDs from uint64 to uint32 in a few places throughout the code to match the IOSurfaceID typedef in the system header. This was necessary in order to simplify integration with Chrome's OpenGL code. There is a known problem in the new code path with garbage occasionally being drawn to the plugin's area during live resizing of Core Animation plugins. Issue 105346 has been filed to track this. It is unclear whether the additional complexity of the fix that is likely needed is worth it. Tested manually with the following content, with and without the --disable-composited-core-animation-plugins flag: - YouTube (does not trigger this code path) - Google+ Hangouts - http://unity3d.com/gallery/demos/live-demos (Unity 3D) - http://www.erain.com/labs/molehill/ (Stage 3D in Flash 11) - http://www.nissan-stagejuk3d.com/ (Stage 3D in Flash 11, live resizing; web site is flaky, sometimes fails to start) BUG=38967 TEST=manual testing with above test cases Review URL: http://codereview.chromium.org/8678037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112126 0039d316-1c4b-4281-b951-d872f2087c98
* base::Bind: Conversions in webkit/plugins/npapi.jhawkins@chromium.org2011-11-121-5/+6
| | | | | | | | | | | BUG=none TEST=none R=csilv@chromium.org Review URL: http://codereview.chromium.org/8539023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109802 0039d316-1c4b-4281-b951-d872f2087c98
* Support playback & seeking in media files over 2G.fischman@chromium.org2011-10-191-3/+3
| | | | | | | | | | BUG=95805 TEST=unittests of touched files pass, manually tested w/ sonyh2.webm which is >5G (internal only), and trybots. Review URL: http://codereview.chromium.org/8349009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106183 0039d316-1c4b-4281-b951-d872f2087c98
* Add a content::RenderView API. I'll make RenderView use it in a future ↵jam@chromium.org2011-10-081-2/+1
| | | | | | | | | change. To make chrome not know about PepperPluginDelegateImpl and to remove a duplicated block of code, I've modified the plugin creation code a little in content. This also makes WebPlugin creation simpler since it doesn't get the mime type in two ways and has to know to ignore the one in the struct. BUG=98716 Review URL: http://codereview.chromium.org/8200019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104624 0039d316-1c4b-4281-b951-d872f2087c98
* Prevent a call to a NULL client as seen in minidumps.mad@chromium.org2011-09-231-1/+2
| | | | | | | | | | | Not sure how we get a NULL there, so can't create a regression test for it, but I thought it would be safe to simply test for NULL here since we test this same value for NULL almost everywhere else in this file. BUG=96087 TEST=??? Review URL: http://codereview.chromium.org/8028001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102602 0039d316-1c4b-4281-b951-d872f2087c98
* Update Chrome to use WebKitPlatformSupport instead of WebKitClient.abarth@chromium.org2011-09-021-1/+1
| | | | | | Review URL: http://codereview.chromium.org/7831035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99349 0039d316-1c4b-4281-b951-d872f2087c98
* Moved the following IPC messages used by the chrome NPAPI plugin installer ↵ananta@chromium.org2011-08-311-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | out of content into Chrome. 1. PluginProcessHostMsg_GetPluginFinderUrl 2. PluginProcessHostMsg_MissingPluginStatus 3. PluginProcessHostMsg_DownloadUrl These messages are prefixed with Chrome. Removed the InstallMissingPlugin and OnInstallMissingPlugin handlers from the NPAPI plugin sources and from our webkit plugin implementation. The plugin infobar no longer sends over an IPC message to initiate installation of the third party plugin. It sends over a windows message which is handled in the plugin installer for Windows. This functionality is not implemented for the mac and linux as before. To display the plugin installation infobar the PluginProcessHostMsg_MissingPluginStatus message sent by the plugin needs the routing id and the renderer process id. This information is now passed along with the plugin instantiation parameters in NPP_New. These parameters are only read by the default plugin. This is a continuation of the fixes to ensure that IPC's don't span across content and chrome. BUG=87335 Review URL: http://codereview.chromium.org/7812020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99062 0039d316-1c4b-4281-b951-d872f2087c98
* Stop using the default profile's proxy service for plugin proxy requests, ↵jam@chromium.org2011-08-291-0/+5
| | | | | | | | | and instead use the associated profile's proxy service. I proxy the IPC through the renderer first, as that makes it easy to get to the associated profile. BUG=92361,64339 Review URL: http://codereview.chromium.org/7791005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98728 0039d316-1c4b-4281-b951-d872f2087c98
* Remove framework for Pepper extensions to NPAPI.wez@chromium.org2011-08-221-73/+0
| | | | | | | | | | BUG= TEST= Review URL: http://codereview.chromium.org/7686016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97722 0039d316-1c4b-4281-b951-d872f2087c98
* Change call to WebFrame::createAssociatedURLLoader to use overload that ↵bbudge@chromium.org2011-07-291-1/+7
| | | | | | | | takes WebURLLoaderOptions, in preparation for WebKit change that removes parameterless overload. Review URL: http://codereview.chromium.org/7519013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94675 0039d316-1c4b-4281-b951-d872f2087c98
* Collect stats on MIME types seen for Flash plug-in loads. This will help uscevans@chromium.org2011-07-151-1/+40
| | | | | | | | | | | | | to make a decision about whether we can tighten anything up for sites which don't use X-Content-Type-Options: nosniff. Also make the MIME type match a substring match just in case there are any: application/x-shockwave-flash; charset=binary BUG=75070 Review URL: http://codereview.chromium.org/7397001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92760 0039d316-1c4b-4281-b951-d872f2087c98
* Defend against content confusions attacks by Flash.cevans@chromium.org2011-07-151-7/+31
| | | | | | | | | | | If the HTTP header for the intial Flash plug-in file indicates no sniffing, then insist that that Content-Type is either blank, or fully correct before loading the plug-in. BUG=75070 Review URL: http://codereview.chromium.org/7373009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92717 0039d316-1c4b-4281-b951-d872f2087c98
* Getting form value from NPAPI plugins.bashi@chromium.org2011-07-131-0/+10
| | | | | | | | | | | | | | Adds/implements a plugin IPC message which allows to get form value from plugins. We need to implement the interface on WebKit side to make this work so the CL won't affect the chromium's behavior for now. BUG=88896 TEST=compiled Review URL: http://codereview.chromium.org/7335004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92315 0039d316-1c4b-4281-b951-d872f2087c98
* Supervise redirects of the plugin src url load, and bounce them through WebKit'scevans@chromium.org2011-06-221-6/+22
| | | | | | | | | mixed content detection. BUG=53949 Review URL: http://codereview.chromium.org/7207003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89998 0039d316-1c4b-4281-b951-d872f2087c98
* Don't allow Pepper URL requests to have Javascript URLs. Modify ↵bbudge@google.com2011-06-021-1/+3
| | | | | | | | PPB_URLRequestInfo_Impl::SetStringProperty to reject Javascript URLs. Review URL: http://codereview.chromium.org/7006004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87629 0039d316-1c4b-4281-b951-d872f2087c98
* Renamed raw_data_length to encoded_data_lengthvsevik@chromium.org2011-04-131-4/+8
| | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/6838021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81464 0039d316-1c4b-4281-b951-d872f2087c98
* Enabled actual transfer size in chromiumvsevik@chromium.org2011-04-081-3/+3
| | | | | | | | | BUG=40502 TEST=Open DevTools, open site having gzip/chunked encoding, ensure transfer size is correct. Review URL: http://codereview.chromium.org/6771043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80965 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 83160:83167.pfeldman@chromium.org2011-04-071-18/+3
| | | | | | TBR=tkent git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80766 0039d316-1c4b-4281-b951-d872f2087c98
* Migrated chromium to new didReceiveData method in WebURLLoaderClientvsevik@chromium.org2011-03-311-7/+23
| | | | | | | | BUG=40502 Review URL: http://codereview.chromium.org/6737026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80039 0039d316-1c4b-4281-b951-d872f2087c98
* Move some files from base to base/memory.levin@chromium.org2011-03-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | raw_scoped_refptr_mismatch_checker.h ref_counted.cc ref_counted.h ref_counted_memory.cc ref_counted_memory.h ref_counted_unittest.cc scoped_callback_factory.h scoped_comptr_win.h scoped_handle.h scoped_native_library.cc scoped_native_library.h scoped_native_library_unittest.cc scoped_nsobject.h scoped_open_process.h scoped_ptr.h scoped_ptr_unittest.cc scoped_temp_dir.cc scoped_temp_dir.h scoped_temp_dir_unittest.cc scoped_vector.h singleton.h singleton_objc.h singleton_unittest.cc linked_ptr.h linked_ptr_unittest.cc weak_ptr.cc weak_ptr.h weak_ptr_unittest.cc BUG=None TEST=Compile Review URL: http://codereview.chromium.org/6714032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79524 0039d316-1c4b-4281-b951-d872f2087c98
* Remove DevToolsAgent network callbacks as this information is now available ↵vsevik@chromium.org2011-03-251-36/+0
| | | | | | | | | | | through ResourceLoader BUG=77393 TEST=Open site with embedded foo.swf, observe only one foo.swf resource occurence in DevTools network panel. Review URL: http://codereview.chromium.org/6696108 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79406 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: migrate to the new updatream willSendRequest method.pfeldman@chromium.org2011-03-251-5/+2
| | | | | | Review URL: http://codereview.chromium.org/6744002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79388 0039d316-1c4b-4281-b951-d872f2087c98
* Removed deprecated function WebPlugin::getBackingTextureId.alokp@chromium.org2011-03-181-5/+0
| | | | | | | | BUG=72784 TEST=manually loaded pepper3d plugins Review URL: http://codereview.chromium.org/6714015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78723 0039d316-1c4b-4281-b951-d872f2087c98
* Remove Gears from Chrome.aa@chromium.org2011-03-111-9/+0
| | | | | | | | | | There are probably a few more bits and pieces that can be removed, but I think this is the majority of it. BUG=51934 Review URL: http://codereview.chromium.org/6576020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77888 0039d316-1c4b-4281-b951-d872f2087c98
* Change includes of gfx/* to ui/gfx/*sail@chromium.org2011-02-051-1/+1
| | | | | | | | | BUG=71063 TEST=compiled Review URL: http://codereview.chromium.org/6312156 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73890 0039d316-1c4b-4281-b951-d872f2087c98
* Propagate the user gesture state. It is necessary to do correct pop-up blockingcevans@chromium.org2011-02-021-2/+4
| | | | | | | | | | | | | if a plug-in tries to open an URL in a new frame. No behaviour changes yet -- those require a separate change to the WebKit chromium directory, that uses the propagated state. BUG=70538 TEST=NONE Review URL: http://codereview.chromium.org/6392042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73417 0039d316-1c4b-4281-b951-d872f2087c98
* Ensure that windowed NPAPI plugins get reparented to the plugin wrapper ↵ananta@chromium.org2011-01-291-0/+7
| | | | | | | | | | | | | | | | | window in the browser during the initial geometry update. This fixes a painting bug which occurs at times with windowed plugins when the page does not invalidate after the plugin is added. Fixes bug http://code.google.com/p/chromium/issues/detail?id=66626 BUG=66626 TEST=manually as described in the bug at this point. Review URL: http://codereview.chromium.org/6271028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73076 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit DEPS past WebKit move. Update gyp files and include paths to ↵abarth@chromium.org2011-01-171-21/+21
| | | | | | reflect the move. Consolidate how we DEPS in WebKit source files. Cross fingers. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71586 0039d316-1c4b-4281-b951-d872f2087c98
* Reland r69146darin@chromium.org2011-01-141-10/+1
| | | | | | | | | | | | | | | | Use WebFrame::createAssociatedURLLoader. See https://bugs.webkit.org/show_bug.cgi?id=49764 for the WebKit side of this change. R=michaeln BUG=none TEST=none Originally reviewed at: http://codereview.chromium.org/5139005 Review URL: http://codereview.chromium.org/5920003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71495 0039d316-1c4b-4281-b951-d872f2087c98
* Re-land earlier patch that moves the NPAPI implementation from ↵brettw@chromium.org2010-12-211-0/+1396
| | | | | | webkit/glue/plugins to webkit/plugins/npapi git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69808 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Move the NPAPI files from webkit/glue/plugins to webkit/plugins/npapi"chase@chromium.org2010-12-211-1396/+0
| | | | | | | | | | | | Manually reverting r69755, which broke the tree. BUG=none TEST=none TBR=dmaclach@chromium.org Review URL: http://codereview.chromium.org/5998002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69771 0039d316-1c4b-4281-b951-d872f2087c98
* Move the NPAPI files from webkit/glue/plugins to webkit/plugins/npapi and putbrettw@chromium.org2010-12-201-0/+1396
them in the webkit::npapi namespace. BUG=none TEST=none Review URL: http://codereview.chromium.org/6012002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69755 0039d316-1c4b-4281-b951-d872f2087c98