[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.16-1409-g5afdf4d
dimich at chromium.org
dimich at chromium.org
Thu Dec 3 13:44:56 UTC 2009
The following commit has been merged in the webkit-1.1 branch:
commit 25b92ac72f35105f648b29938a929467b67900bd
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