RESOLVED FIXED 128410
Add API for accessing session ephemerality from a page bundle
https://bugs.webkit.org/show_bug.cgi?id=128410
Summary Add API for accessing session ephemerality from a page bundle
Martin Hock
Reported 2014-02-07 16:11:23 PST
Add API for accessing session from a page or bundle.
Attachments
patch (4.94 KB, patch)
2014-02-07 16:17 PST, Martin Hock
ap: review-
expose just the bool from bundle (3.07 KB, patch)
2014-02-07 17:23 PST, Martin Hock
ap: review+
ap: commit-queue-
rename method (3.14 KB, patch)
2014-02-10 10:10 PST, Martin Hock
no flags
Martin Hock
Comment 1 2014-02-07 16:17:07 PST
Alexey Proskuryakov
Comment 2 2014-02-07 16:57:42 PST
Comment on attachment 223510 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=223510&action=review I think that it is tricky to expose a session API when we don't really track sessions internally yet. I would suggest not doing anything in UIProcess API, and exposing WKBundlePageIsUsingEphemeralSession in bundle API. > Source/WebKit2/UIProcess/API/C/WKPage.cpp:1496 > + return toAPI(session.release().leakRef()); An API function that returns something that should be released should have "create" or "copy" in the name, not "get". This one would be "WKPageCopySession" (but note the above, let's not add it yet). > Source/WebKit2/UIProcess/APISession.h:39 > + static PassRefPtr<Session> fromID(uint64_t sessionID); This looks like something SessionTracker would be responsible for, not Session itself. > Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp:548 > + RefPtr<API::Session> session = API::Session::fromID(toImpl(pageRef)->sessionID()); UI process API and bundle API are different. APISession.h file is in UIProcess directory, so it cannot be used here. You have this header indirectly included via WKSharedAPICast.h. But it shouldn't be there, as WKSession.h itself is in UIProcess. The include should be in WKAPICast.h instead.
Martin Hock
Comment 3 2014-02-07 17:23:22 PST
Created attachment 223523 [details] expose just the bool from bundle
Alexey Proskuryakov
Comment 4 2014-02-08 02:24:02 PST
Comment on attachment 223523 [details] expose just the bool from bundle View in context: https://bugs.webkit.org/attachment.cgi?id=223523&action=review > Source/WebKit2/WebProcess/WebPage/WebPage.cpp:2110 > +bool WebPage::isEphemeral() const Why not use the same name, isUsingEphemeralSession()? "Page is ephemeral" is not a concept we have.
Martin Hock
Comment 5 2014-02-10 10:10:22 PST
Created attachment 223722 [details] rename method
WebKit Commit Bot
Comment 6 2014-02-10 10:54:43 PST
Comment on attachment 223722 [details] rename method Clearing flags on attachment: 223722 Committed r163800: <http://trac.webkit.org/changeset/163800>
WebKit Commit Bot
Comment 7 2014-02-10 10:54:45 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.