Bug 148282

Summary: [EFL] Revise PlatformWebView ctor according to r188718
Product: WebKit Reporter: Joonghun Park <jh718.park>
Component: WebKit EFLAssignee: Joonghun Park <jh718.park>
Status: RESOLVED FIXED    
Severity: Normal CC: gyuyoung.kim, lucas.de.marchi, mcatanzaro, ossy
Priority: P2    
Version: WebKit Local Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch gyuyoung.kim: review+

Joonghun Park
Reported 2015-08-20 19:26:11 PDT
https://bugs.webkit.org/show_bug.cgi?id=147996 changed PlatformWebView ctor's argument to use WKPageConfigurationRef instead of WKContextRef and WKPageGroupRef respectively. So change the ctor argument aligning with it.
Attachments
Patch (3.12 KB, patch)
2015-08-20 19:31 PDT, Joonghun Park
gyuyoung.kim: review+
Joonghun Park
Comment 1 2015-08-20 19:31:00 PDT
Gyuyoung Kim
Comment 2 2015-08-20 21:28:53 PDT
Comment on attachment 259565 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=259565&action=review > Source/WebKit2/PlatformEfl.cmake:68 > + UIProcess/API/C/WKPageConfigurationRef.cpp Wrong alphabet order.
Gyuyoung Kim
Comment 3 2015-08-20 21:30:58 PDT
Gyuyoung Kim
Comment 4 2015-08-20 21:31:32 PDT
(In reply to comment #3) > Committed r188751: <http://trac.webkit.org/changeset/188751> Land after fixing it.
Joonghun Park
Comment 5 2015-08-20 22:24:27 PDT
(In reply to comment #2) > Comment on attachment 259565 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=259565&action=review > > > Source/WebKit2/PlatformEfl.cmake:68 > > + UIProcess/API/C/WKPageConfigurationRef.cpp > > Wrong alphabet order. If I place files as below, UIProcess/API/C/CoordinatedGraphics/WKView.cpp UIProcess/API/C/WKPageConfigurationRef.cpp then when I run check-webkit-style script, I meet the log like this. Source/WebKit2/PlatformEfl.cmake:69: Alphabetical sorting problem. "UIProcess/API/C/WKPageConfigurationRef.cpp" should be before "UIProcess/API/C/CoordinatedGraphics/WKView.cpp". It seems that WKPageConfigurationRef.cpp is precede to WKView.cpp because the former is file name and the latter is an intermediate path name I think. So I guess the current alphabetical order is the right one.
Gyuyoung Kim
Comment 6 2015-08-20 22:30:51 PDT
(In reply to comment #5) > (In reply to comment #2) > > Comment on attachment 259565 [details] > > Patch > > > > View in context: > > https://bugs.webkit.org/attachment.cgi?id=259565&action=review > > > > > Source/WebKit2/PlatformEfl.cmake:68 > > > + UIProcess/API/C/WKPageConfigurationRef.cpp > > > > Wrong alphabet order. > > If I place files as below, > > UIProcess/API/C/CoordinatedGraphics/WKView.cpp > UIProcess/API/C/WKPageConfigurationRef.cpp > > then when I run check-webkit-style script, I meet the log like this. > > Source/WebKit2/PlatformEfl.cmake:69: Alphabetical sorting problem. > "UIProcess/API/C/WKPageConfigurationRef.cpp" should be before > "UIProcess/API/C/CoordinatedGraphics/WKView.cpp". > > It seems that WKPageConfigurationRef.cpp is precede to WKView.cpp > because the former is file name and the latter is an intermediate path name > I think. > > So I guess the current alphabetical order is the right one. Yes, it just needed to have a empty line. :) I fixed it. http://trac.webkit.org/changeset/188751/trunk/Source/WebKit2/PlatformEfl.cmake
Joonghun Park
Comment 7 2015-08-20 22:35:50 PDT
(In reply to comment #6) > (In reply to comment #5) > > (In reply to comment #2) > > > Comment on attachment 259565 [details] > > > Patch > > > > > > View in context: > > > https://bugs.webkit.org/attachment.cgi?id=259565&action=review > > > > > > > Source/WebKit2/PlatformEfl.cmake:68 > > > > + UIProcess/API/C/WKPageConfigurationRef.cpp > > > > > > Wrong alphabet order. > > > > If I place files as below, > > > > UIProcess/API/C/CoordinatedGraphics/WKView.cpp > > UIProcess/API/C/WKPageConfigurationRef.cpp > > > > then when I run check-webkit-style script, I meet the log like this. > > > > Source/WebKit2/PlatformEfl.cmake:69: Alphabetical sorting problem. > > "UIProcess/API/C/WKPageConfigurationRef.cpp" should be before > > "UIProcess/API/C/CoordinatedGraphics/WKView.cpp". > > > > It seems that WKPageConfigurationRef.cpp is precede to WKView.cpp > > because the former is file name and the latter is an intermediate path name > > I think. > > > > So I guess the current alphabetical order is the right one. > > Yes, it just needed to have a empty line. :) I fixed it. > > http://trac.webkit.org/changeset/188751/trunk/Source/WebKit2/PlatformEfl. > cmake Ah, I missed the empty line. Thank you :)
Michael Catanzaro
Comment 8 2015-08-22 11:39:59 PDT
Thanks Joonghun. I moved it from PlatformEfl.cmake to CMakeLists.txt in r188826, since it's needed by every port.
Note You need to log in before you can comment on or make changes to this bug.