RESOLVED FIXED 42384
Send JavaScript stream data to plug-ins
https://bugs.webkit.org/show_bug.cgi?id=42384
Summary Send JavaScript stream data to plug-ins
Anders Carlsson
Reported 2010-07-15 09:39:03 PDT
Send JavaScript stream data to plug-ins
Attachments
Patch (9.22 KB, patch)
2010-07-15 09:44 PDT, Anders Carlsson
darin: review+
Anders Carlsson
Comment 1 2010-07-15 09:44:06 PDT
WebKit Review Bot
Comment 2 2010-07-15 09:49:46 PDT
Attachment 61675 [details] did not pass style-queue: Failed to run "['WebKitTools/Scripts/check-webkit-style']" exit_code: 1 WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.h:65: NPP_WriteReady is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.h:66: NPP_Write is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp:161: NetscapePlugin::NPP_WriteReady is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.cpp:166: NetscapePlugin::NPP_Write is incorrectly named. Don't use underscores in your identifier names. [readability/naming] [4] Total errors found: 4 in 5 files If any of these errors are false positives, please file a bug against check-webkit-style.
Darin Adler
Comment 3 2010-07-15 09:51:45 PDT
Comment on attachment 61675 [details] Patch > +void NetscapePluginStream::deliverData(const char* bytes, int length) int? int32_t? unsigned? uint32_t? size_t? Our seemingly random length types drive me crazy! Does this already have layout test coverage? r=me
Anders Carlsson
Comment 4 2010-07-15 10:13:54 PDT
(In reply to comment #3) > (From update of attachment 61675 [details]) > > +void NetscapePluginStream::deliverData(const char* bytes, int length) > > int? int32_t? unsigned? uint32_t? size_t? Our seemingly random length types drive me crazy! > Yeah it's really annoying. I used the same type as ResourceHandleClient::didReceiveData. We should definitly fix didReceiveData and all the clients etc to use a size_t instead. > Does this already have layout test coverage? Yes.
Anders Carlsson
Comment 5 2010-07-15 11:19:53 PDT
Note You need to log in before you can comment on or make changes to this bug.