Bug 138828

Summary: [GTK] Add API to override the default local storage directory
Product: WebKit Reporter: Carlos Garcia Campos <cgarcia>
Component: WebKitGTKAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: berto, commit-queue, gustavo, mrobinson
Priority: P2 Keywords: Gtk
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on: 138826    
Bug Blocks:    
Attachments:
Description Flags
Patch
none
It should apply now gustavo: review+

Description Carlos Garcia Campos 2014-11-18 03:17:57 PST
It's currently not possible to override the default local storage directory, so that all webkitgtk applications are storing the local storage data in the same directory. This is particularly problematic for private instances like incognito mode. See https://bugzilla.gnome.org/show_bug.cgi?id=738720.
This depends on bug #138826, since the local storage directory path is a construct only configuration, it's not possible to override that for the default web context.
Comment 1 Carlos Garcia Campos 2014-11-18 03:22:05 PST
Created attachment 241778 [details]
Patch
Comment 2 Carlos Garcia Campos 2014-11-18 06:39:31 PST
Created attachment 241787 [details]
It should apply now
Comment 3 WebKit Commit Bot 2014-11-18 06:42:21 PST
Thanks for the patch. If this patch contains new public API please make sure it follows the guidelines for new WebKit2 GTK+ API. See http://trac.webkit.org/wiki/WebKitGTK/AddingNewWebKit2API
Comment 4 Gustavo Noronha (kov) 2014-11-21 05:31:54 PST
Comment on attachment 241787 [details]
It should apply now

View in context: https://bugs.webkit.org/attachment.cgi?id=241787&action=review

So no convenience _new? I think that is ok, but worth noting so you can consider =)

> Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp:255
> +    WebKitWebContext* webContext = WEBKIT_WEB_CONTEXT(object);
> +    WebKitWebContextPrivate* priv = webContext->priv;

It doesn't hurt my eyes, but this should move to before the priv->localStorageDictory.isNull check in theory.

> Tools/TestWebKitAPI/Tests/WebKit2Gtk/TestWebKitWebContext.cpp:42
> +    // Local Sorage Directory.

This doesn't add much information, I'd do away with it - the variable name is enough documentation.
Comment 5 Carlos Garcia Campos 2014-11-23 23:23:52 PST
Committed r176512: <http://trac.webkit.org/changeset/176512>