Title: [137598] trunk/Source/WebKit2
Revision
137598
Author
[email protected]
Date
2012-12-13 08:26:38 -0800 (Thu, 13 Dec 2012)

Log Message

[EFL] Update the way we set the cookies policy
https://bugs.webkit.org/show_bug.cgi?id=104915

Reviewed by Kenneth Rohde Christiansen.

We are mistakenly assigning the cookie policy to the persistent storage
type which is not correct. This was caused by r137432 and is making
the unit tests fail.

* UIProcess/efl/WebContextEfl.cpp:
(WebKit::WebContext::platformInitializeWebProcess):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (137597 => 137598)


--- trunk/Source/WebKit2/ChangeLog	2012-12-13 16:08:49 UTC (rev 137597)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-13 16:26:38 UTC (rev 137598)
@@ -1,3 +1,17 @@
+2012-12-13  Thiago Marcos P. Santos  <[email protected]>
+
+        [EFL] Update the way we set the cookies policy
+        https://bugs.webkit.org/show_bug.cgi?id=104915
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        We are mistakenly assigning the cookie policy to the persistent storage
+        type which is not correct. This was caused by r137432 and is making
+        the unit tests fail.
+
+        * UIProcess/efl/WebContextEfl.cpp:
+        (WebKit::WebContext::platformInitializeWebProcess):
+
 2012-12-13  Andras Becsi  <[email protected]>
 
         [Qt][WK2] Fix painting on Mac with retina display

Modified: trunk/Source/WebKit2/UIProcess/efl/WebContextEfl.cpp (137597 => 137598)


--- trunk/Source/WebKit2/UIProcess/efl/WebContextEfl.cpp	2012-12-13 16:08:49 UTC (rev 137597)
+++ trunk/Source/WebKit2/UIProcess/efl/WebContextEfl.cpp	2012-12-13 16:26:38 UTC (rev 137598)
@@ -89,7 +89,8 @@
     initializeInspectorServer();
 
     parameters.urlSchemesRegistered = m_soupRequestManagerProxy->registeredURISchemes();
-    m_cookieManagerProxy->getCookiePersistentStorage(parameters.cookiePersistentStoragePath, parameters.cookieAcceptPolicy);
+    m_cookieManagerProxy->getCookiePersistentStorage(parameters.cookiePersistentStoragePath, parameters.cookiePersistentStorageType);
+    parameters.cookieAcceptPolicy = m_initialHTTPCookieAcceptPolicy;
 }
 
 void WebContext::platformInvalidateContext()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to