Title: [98317] trunk/Source
Revision
98317
Author
[email protected]
Date
2011-10-24 21:26:38 -0700 (Mon, 24 Oct 2011)

Log Message

Source/WebCore: Fix a typo.

* bindings/v8/_javascript_CallFrame.h:

Source/WebKit/win: threadsafeCopy has been renamed to isolatedCopy.

* WebDatabaseManager.cpp:
(DidModifyOriginData::dispatchToMainThread):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (98316 => 98317)


--- trunk/Source/WebCore/ChangeLog	2011-10-25 03:54:15 UTC (rev 98316)
+++ trunk/Source/WebCore/ChangeLog	2011-10-25 04:26:38 UTC (rev 98317)
@@ -1,3 +1,9 @@
+2011-10-24  Ryosuke Niwa  <[email protected]>
+
+        Fix a typo.
+
+        * bindings/v8/_javascript_CallFrame.h:
+
 2011-10-24  Geoffrey Garen  <[email protected]>
 
         Removed SharedUChar and tightened language around its previous uses

Modified: trunk/Source/WebCore/bindings/v8/_javascript_CallFrame.h (98316 => 98317)


--- trunk/Source/WebCore/bindings/v8/_javascript_CallFrame.h	2011-10-25 03:54:15 UTC (rev 98316)
+++ trunk/Source/WebCore/bindings/v8/_javascript_CallFrame.h	2011-10-25 04:26:38 UTC (rev 98317)
@@ -36,7 +36,7 @@
 #include "OwnHandle.h"
 #include "PlatformString.h"
 #include <v8-debug.h>
-#inculde <wtf/RefCounted.h>
+#include <wtf/RefCounted.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebKit/win/ChangeLog (98316 => 98317)


--- trunk/Source/WebKit/win/ChangeLog	2011-10-25 03:54:15 UTC (rev 98316)
+++ trunk/Source/WebKit/win/ChangeLog	2011-10-25 04:26:38 UTC (rev 98317)
@@ -1,3 +1,10 @@
+2011-10-24  Ryosuke Niwa  <[email protected]>
+
+        threadsafeCopy has been renamed to isolatedCopy.
+
+        * WebDatabaseManager.cpp:
+        (DidModifyOriginData::dispatchToMainThread):
+
 2011-10-24  Adam Barth  <[email protected]>
 
         Attempt to fix Windows build by updating to the new interface.

Modified: trunk/Source/WebKit/win/WebDatabaseManager.cpp (98316 => 98317)


--- trunk/Source/WebKit/win/WebDatabaseManager.cpp	2011-10-25 03:54:15 UTC (rev 98316)
+++ trunk/Source/WebKit/win/WebDatabaseManager.cpp	2011-10-25 04:26:38 UTC (rev 98317)
@@ -334,7 +334,7 @@
 public:
     static void dispatchToMainThread(WebDatabaseManager* databaseManager, SecurityOrigin* origin)
     {
-        DidModifyOriginData* context = new DidModifyOriginData(databaseManager, origin->threadsafeCopy());
+        DidModifyOriginData* context = new DidModifyOriginData(databaseManager, origin->isolatedCopy());
         callOnMainThread(&DidModifyOriginData::dispatchDidModifyOriginOnMainThread, context);
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to