Title: [151397] trunk/Source/WebCore
Revision
151397
Author
commit-qu...@webkit.org
Date
2013-06-10 10:45:42 -0700 (Mon, 10 Jun 2013)

Log Message

[BlackBerry] Store ParsedCookies as RefPtrs instead of PassRefPtrs in CookieDatabaseBackingStore
https://bugs.webkit.org/show_bug.cgi?id=117411

JIRA388672
BRWSR-11465
Patch by Otto Derek Cheung <otche...@rim.com> on 2013-06-10
Reviewed by Rob Buis.

When we queue up ParsedCookie objects for modification, we should be storing them as a refptr instead
of a PassRefPtr.

* platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (151396 => 151397)


--- trunk/Source/WebCore/ChangeLog	2013-06-10 16:27:42 UTC (rev 151396)
+++ trunk/Source/WebCore/ChangeLog	2013-06-10 17:45:42 UTC (rev 151397)
@@ -1,3 +1,17 @@
+2013-06-10  Otto Derek Cheung  <otche...@rim.com>
+
+        [BlackBerry] Store ParsedCookies as RefPtrs instead of PassRefPtrs in CookieDatabaseBackingStore
+        https://bugs.webkit.org/show_bug.cgi?id=117411
+
+        JIRA388672
+        BRWSR-11465
+        Reviewed by Rob Buis.
+
+        When we queue up ParsedCookie objects for modification, we should be storing them as a refptr instead
+        of a PassRefPtr.
+
+        * platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.h:
+
 2013-06-10  Mihnea Ovidenie  <mih...@adobe.com>
 
         [CSSRegions] ASSERTION FAILED: roundedIntPoint(rendererMappedResult) == roundedIntPoint(result) in RenderGeometryMap::mapToContainer

Modified: trunk/Source/WebCore/platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.h (151396 => 151397)


--- trunk/Source/WebCore/platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.h	2013-06-10 16:27:42 UTC (rev 151396)
+++ trunk/Source/WebCore/platform/blackberry/CookieDatabaseBackingStore/CookieDatabaseBackingStore.h	2013-06-10 17:45:42 UTC (rev 151397)
@@ -91,7 +91,7 @@
 
     void close();
 
-    typedef pair<const PassRefPtr<ParsedCookie>, UpdateParameter> CookieAction;
+    typedef pair<const RefPtr<ParsedCookie>, UpdateParameter> CookieAction;
     Vector<CookieAction> m_changedCookies;
     Mutex m_mutex;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to