[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

dimich at chromium.org dimich at chromium.org
Wed Apr 7 23:57:20 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 08706b6409b2e9973731af71179ca23952b05c53
Author: dimich at chromium.org <dimich at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 25 23:44:13 2009 +0000

    Update SharedScript to use eventNames() instead of EventNames()
    https://bugs.webkit.org/show_bug.cgi?id=31890
    
    Reviewed by David Levin.
    
    * SharedScript/WebKitSharedScript.cpp:
    (WebCore::LoadEventTask::performTask):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@51397 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 62fd2ca..94263a4 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2009-11-25  Dmitry Titov  <dimich at chromium.org>
+
+        Reviewed by David Levin.
+
+        Update SharedScript to use eventNames() instead of EventNames()
+        https://bugs.webkit.org/show_bug.cgi?id=31890
+
+        * SharedScript/WebKitSharedScript.cpp:
+        (WebCore::LoadEventTask::performTask):
+
 2009-11-25  Eric Carlson  <eric.carlson at apple.com>
 
         Reviewed by Simon Fraser.
diff --git a/WebCore/SharedScript/WebKitSharedScript.cpp b/WebCore/SharedScript/WebKitSharedScript.cpp
index 3cdac91..aaaf706 100644
--- a/WebCore/SharedScript/WebKitSharedScript.cpp
+++ b/WebCore/SharedScript/WebKitSharedScript.cpp
@@ -87,7 +87,7 @@ public:
     {
         ASSERT_UNUSED(context, context->isDocument());
         m_sharedScript->setContext(m_innerContext);
-        m_sharedScript->dispatchEvent(Event::create(EventNames().loadEvent, false, false));
+        m_sharedScript->dispatchEvent(Event::create(eventNames().loadEvent, false, false));
 
         m_sharedScript->unsetPendingActivity(m_sharedScript.get());
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list