Title: [171030] trunk/Source/WebKit2
Revision
171030
Author
oli...@apple.com
Date
2014-07-12 14:49:41 -0700 (Sat, 12 Jul 2014)

Log Message

Fix typo in prior patch
https://bugs.webkit.org/show_bug.cgi?id=134858

Reviewed by Sam Weinig.

Fix typo

* UIProcess/mac/WebContextMac.mm:
(WebKit::WebContext::platformDefaultCookieStorageDirectory):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (171029 => 171030)


--- trunk/Source/WebKit2/ChangeLog	2014-07-12 21:36:42 UTC (rev 171029)
+++ trunk/Source/WebKit2/ChangeLog	2014-07-12 21:49:41 UTC (rev 171030)
@@ -1,3 +1,15 @@
+2014-07-12  Oliver Hunt  <oli...@apple.com>
+
+        Fix typo in prior patch
+        https://bugs.webkit.org/show_bug.cgi?id=134858
+
+        Reviewed by Sam Weinig.
+
+        Fix typo
+
+        * UIProcess/mac/WebContextMac.mm:
+        (WebKit::WebContext::platformDefaultCookieStorageDirectory):
+
 2014-07-12  Dan Bernstein  <m...@apple.com>
 
         [Cocoa] Client is not notified of same-document navigations

Modified: trunk/Source/WebKit2/UIProcess/mac/WebContextMac.mm (171029 => 171030)


--- trunk/Source/WebKit2/UIProcess/mac/WebContextMac.mm	2014-07-12 21:36:42 UTC (rev 171029)
+++ trunk/Source/WebKit2/UIProcess/mac/WebContextMac.mm	2014-07-12 21:49:41 UTC (rev 171030)
@@ -278,7 +278,7 @@
     path = path + "/Library/Cookies";
     path = stringByResolvingSymlinksInPath(path);
     // Temporary work around for <rdar://<rdar://problem/17513375>
-    if (path == "/var/mobile/Library/Cookies")
+    if (path == "/private/var/mobile/Library/Cookies")
         return String();
 
     return path;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to