[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

ggaren at apple.com ggaren at apple.com
Thu Feb 4 21:27:27 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit eb2f17c5358ebe5580907923d799d33dbd2e467d
Author: ggaren at apple.com <ggaren at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 25 18:58:43 2010 +0000

    Suggested by Darin Adler.
    
    Fixed a spelling error, tightened up some grammar.
    
    * bindings/js/JSDOMBinding.cpp:
    (WebCore::forgetDOMObject):
    (WebCore::forgetDOMNode):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53808 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index bea78a0..9e5b6d1 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-01-25  Geoffrey Garen  <ggaren at apple.com>
+
+        Suggested by Darin Adler.
+
+        Fixed a spelling error, tightened up some grammar.
+
+        * bindings/js/JSDOMBinding.cpp:
+        (WebCore::forgetDOMObject):
+        (WebCore::forgetDOMNode):
+
 2010-01-25  Yury Semikhatsky  <yurys at chromium.org>
 
         Reviewed by Timothy Hatcher.
diff --git a/WebCore/bindings/js/JSDOMBinding.cpp b/WebCore/bindings/js/JSDOMBinding.cpp
index 531ade7..b57a493 100644
--- a/WebCore/bindings/js/JSDOMBinding.cpp
+++ b/WebCore/bindings/js/JSDOMBinding.cpp
@@ -288,8 +288,8 @@ void forgetDOMObject(DOMObject* wrapper, void* objectHandle)
         return;
     }
 
-    // We can't guarantee that an wrapper is in the cache when it uncaches itself,
-    // since a new wrapper may have been allocated before the object's destrcutor ran.
+    // We can't guarantee that a wrapper is in the cache when it uncaches itself,
+    // since a new wrapper may be cached before the old wrapper's destructor runs.
     for (JSGlobalDataWorldIterator worldIter(globalData); worldIter; ++worldIter) {
         if (worldIter->m_wrappers.uncheckedRemove(objectHandle, wrapper))
             break;
@@ -304,8 +304,8 @@ void forgetDOMNode(JSNode* wrapper, Node* node, Document* document)
         return;
     }
 
-    // We can't guarantee that an wrapper is in the cache when it uncaches itself,
-    // since a new wrapper may have been allocated before the object's destrcutor ran.
+    // We can't guarantee that a wrapper is in the cache when it uncaches itself,
+    // since a new wrapper may be cached before the old wrapper's destructor runs.
     JSWrapperCacheMap& wrapperCacheMap = document->wrapperCacheMap();
     for (JSWrapperCacheMap::iterator wrappersIter = wrapperCacheMap.begin(); wrappersIter != wrapperCacheMap.end(); ++wrappersIter) {
         if (wrappersIter->second->uncheckedRemove(node, wrapper))

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list