RESOLVED FIXED 46992
Implement NPN_GetValueForURL/NPN_SetValueForURL and stub out PluginController functions
https://bugs.webkit.org/show_bug.cgi?id=46992
Summary Implement NPN_GetValueForURL/NPN_SetValueForURL and stub out PluginController...
Anders Carlsson
Reported 2010-10-01 09:57:28 PDT
Implement NPN_GetValueForURL/NPN_SetValueForURL and stub out PluginController functions
Attachments
Patch (9.14 KB, patch)
2010-10-01 09:59 PDT, Anders Carlsson
mitz: review+
Anders Carlsson
Comment 1 2010-10-01 09:59:39 PDT
WebKit Review Bot
Comment 2 2010-10-01 10:02:18 PDT
Attachment 69477 [details] did not pass style-queue: Failed to run "['WebKitTools/Scripts/check-webkit-style']" exit_code: 1 WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:698: A case label should not be indented, but line up with its switch statement. [whitespace/indent] [4] WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:726: A case label should not be indented, but line up with its switch statement. [whitespace/indent] [4] Total errors found: 2 in 7 files If any of these errors are false positives, please file a bug against check-webkit-style.
Anders Carlsson
Comment 3 2010-10-01 10:03:03 PDT
mitz
Comment 4 2010-10-01 10:39:43 PDT
Comment on attachment 69477 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=69477&action=review > WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.h:80 > + String proxiesForURL(const String& urlString); > + String cookiesForURL(const String& urlString); No need to name the argument in these two. > WebKit2/WebProcess/Plugins/PluginController.h:96 > + virtual String proxiesForURL(const String& urlString) = 0; > + > + // Returns the cookies for the given URL or null on failure. > + virtual String cookiesForURL(const String& urlString) = 0; > + No need to name the arguments in these two. > WebKit2/WebProcess/Plugins/PluginView.h:131 > + virtual String proxiesForURL(const String& urlString); > + virtual String cookiesForURL(const String& urlString); No need to name the arguments here.
Anders Carlsson
Comment 5 2010-10-01 10:46:48 PDT
Note You need to log in before you can comment on or make changes to this bug.