RESOLVED WONTFIX 142573
Fix build warning in WebKit2/NetworkProcess module
https://bugs.webkit.org/show_bug.cgi?id=142573
Summary Fix build warning in WebKit2/NetworkProcess module
Shivakumar J M
Reported 2015-03-10 23:18:11 PDT
Got build warnign in latest build for efl port. ../../Source/WebKit2/NetworkProcess/NetworkProcess.cpp:268:13: warning: unused parameter ‘sessionID’ [-Wunused-parameter] static void fetchDiskCacheEntries(SessionID sessionID, std::function<void (Vector<WebsiteData::Entry>)> completionHandler) ^ ../../Source/WebKit2/NetworkProcess/NetworkProcess.cpp:369:6: warning: unused parameter ‘origins’ [-Wunused-parameter] void NetworkProcess::deleteWebsiteDataForOrigins(SessionID sessionID, uint64_t websiteDataTypes, const Vector<SecurityOriginData>& origins, const Vector<String>& cookieHostNames, uint64_t callbackID)
Attachments
Patch (1.98 KB, patch)
2015-03-10 23:22 PDT, Shivakumar J M
darin: review+
Shivakumar J M
Comment 1 2015-03-10 23:22:58 PDT
Created attachment 248405 [details] Patch Fix build warning by removing argument name from function.
WebKit Commit Bot
Comment 2 2015-03-10 23:24:41 PDT
Attachment 248405 [details] did not pass style-queue: ERROR: Source/WebKit2/NetworkProcess/NetworkProcess.cpp:268: Extra space before ( in function call [whitespace/parens] [4] Total errors found: 1 in 2 files If any of these errors are false positives, please file a bug against check-webkit-style.
Darin Adler
Comment 3 2015-03-10 23:54:19 PDT
Comment on attachment 248405 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=248405&action=review > Source/WebKit2/NetworkProcess/NetworkProcess.cpp:369 > +void NetworkProcess::deleteWebsiteDataForOrigins(SessionID sessionID, uint64_t websiteDataTypes, const Vector<SecurityOriginData>& , const Vector<String>& cookieHostNames, uint64_t callbackID) Should not have left in a space before the comma.
Csaba Osztrogonác
Comment 4 2015-03-11 00:44:19 PDT
After http://trac.webkit.org/changeset/181318 we don't need to fix this kind of warnings in WebKit2, they are silenced similar to Mac build.
Shivakumar J M
Comment 5 2015-03-11 01:31:29 PDT
(In reply to comment #4) > After http://trac.webkit.org/changeset/181318 we don't need to fix this > kind of warnings in WebKit2, they are silenced similar to Mac build. Ok, will mark these issue as wontfix
Note You need to log in before you can comment on or make changes to this bug.