From a0e4a8a69ee10f4ee7de10bb1f34efeab059a1d0 Mon Sep 17 00:00:00 2001 From: "ananta@chromium.org" Date: Fri, 24 Jul 2009 18:05:27 +0000 Subject: The IPCs for carrying data requested by plugins have been changed from synchronous IPCs to asynchronous IPCs. This fixes bug http://code.google.com/p/chromium/issues/detail?id=14323, where the Flash plugin would not render content on the page if these IPCs were processed while the plugin waited for sync calls like NPN_Evaluate to return. Test=covered by UI tests. Bug=14323 Review URL: http://codereview.chromium.org/159296 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21548 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/webplugin.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'webkit/glue/webplugin.h') diff --git a/webkit/glue/webplugin.h b/webkit/glue/webplugin.h index 07d2470..70952d0 100644 --- a/webkit/glue/webplugin.h +++ b/webkit/glue/webplugin.h @@ -146,8 +146,7 @@ class WebPluginResourceClient { const std::string& headers, uint32 expected_length, uint32 last_modified, - bool request_is_seekable, - bool* cancel) = 0; + bool request_is_seekable) = 0; virtual void DidReceiveData(const char* buffer, int length, int data_offset) = 0; virtual void DidFinishLoading() = 0; -- cgit v1.1