[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

yurys at chromium.org yurys at chromium.org
Fri Jan 21 14:41:33 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 3da7b100a82f47bed5bd2a666f3c3dcf8d7a5958
Author: yurys at chromium.org <yurys at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Dec 24 19:36:03 2010 +0000

    2010-12-24  Yury Semikhatsky  <yurys at chromium.org>
    
            Reviewed by Darin Adler.
    
            [V8] Rename V8CustomEventListener.{h,cpp} to V8EventListener.{h,cpp}
            https://bugs.webkit.org/show_bug.cgi?id=51595
    
            * WebCore.gypi:
            * bindings/v8/V8DOMWrapper.cpp:
            * bindings/v8/V8EventListener.cpp: Renamed from WebCore/bindings/v8/custom/V8CustomEventListener.cpp.
            (WebCore::V8EventListener::V8EventListener):
            (WebCore::V8EventListener::getListenerFunction):
            (WebCore::V8EventListener::callListenerFunction):
            * bindings/v8/V8EventListener.h: Renamed from WebCore/bindings/v8/custom/V8CustomEventListener.h.
            (WebCore::V8EventListener::create):
            * bindings/v8/V8EventListenerList.h:
            * bindings/v8/V8WorkerContextEventListener.h:
            * bindings/v8/custom/V8DOMWindowCustom.cpp:
            * bindings/v8/custom/V8LocationCustom.cpp:
            * bindings/v8/custom/V8NodeCustom.cpp:
            * bindings/v8/custom/V8NotificationCenterCustom.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74646 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9afb418..9c2be1b 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,25 @@
+2010-12-24  Yury Semikhatsky  <yurys at chromium.org>
+
+        Reviewed by Darin Adler.
+
+        [V8] Rename V8CustomEventListener.{h,cpp} to V8EventListener.{h,cpp}
+        https://bugs.webkit.org/show_bug.cgi?id=51595
+
+        * WebCore.gypi:
+        * bindings/v8/V8DOMWrapper.cpp:
+        * bindings/v8/V8EventListener.cpp: Renamed from WebCore/bindings/v8/custom/V8CustomEventListener.cpp.
+        (WebCore::V8EventListener::V8EventListener):
+        (WebCore::V8EventListener::getListenerFunction):
+        (WebCore::V8EventListener::callListenerFunction):
+        * bindings/v8/V8EventListener.h: Renamed from WebCore/bindings/v8/custom/V8CustomEventListener.h.
+        (WebCore::V8EventListener::create):
+        * bindings/v8/V8EventListenerList.h:
+        * bindings/v8/V8WorkerContextEventListener.h:
+        * bindings/v8/custom/V8DOMWindowCustom.cpp:
+        * bindings/v8/custom/V8LocationCustom.cpp:
+        * bindings/v8/custom/V8NodeCustom.cpp:
+        * bindings/v8/custom/V8NotificationCenterCustom.cpp:
+
 2010-12-24  Carlos Garcia Campos  <cgarcia at igalia.com>
 
         Reviewed by Xan Lopez.
diff --git a/WebCore/WebCore.gypi b/WebCore/WebCore.gypi
index d565623..af9d659 100644
--- a/WebCore/WebCore.gypi
+++ b/WebCore/WebCore.gypi
@@ -794,8 +794,6 @@
             'bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp',
             'bindings/v8/custom/V8CSSStyleSheetCustom.cpp',
             'bindings/v8/custom/V8CSSValueCustom.cpp',
-            'bindings/v8/custom/V8CustomEventListener.cpp',
-            'bindings/v8/custom/V8CustomEventListener.h',
             'bindings/v8/custom/V8CustomPositionCallback.cpp',
             'bindings/v8/custom/V8CustomPositionCallback.h',
             'bindings/v8/custom/V8CustomPositionErrorCallback.cpp',
@@ -960,6 +958,8 @@
             'bindings/v8/V8DOMWindowShell.h',
             'bindings/v8/V8DOMWrapper.cpp',
             'bindings/v8/V8DOMWrapper.h',
+            'bindings/v8/V8EventListener.cpp',
+            'bindings/v8/V8EventListener.h',
             'bindings/v8/V8EventListenerList.cpp',
             'bindings/v8/V8EventListenerList.h',
             'bindings/v8/V8GCController.cpp',
diff --git a/WebCore/bindings/v8/V8DOMWrapper.cpp b/WebCore/bindings/v8/V8DOMWrapper.cpp
index 72f6bdc..b51c5a5 100644
--- a/WebCore/bindings/v8/V8DOMWrapper.cpp
+++ b/WebCore/bindings/v8/V8DOMWrapper.cpp
@@ -40,11 +40,11 @@
 #include "V8AbstractEventListener.h"
 #include "V8Binding.h"
 #include "V8Collection.h"
-#include "V8CustomEventListener.h"
 #include "V8DedicatedWorkerContext.h"
 #include "V8DOMApplicationCache.h"
 #include "V8DOMMap.h"
 #include "V8DOMWindow.h"
+#include "V8EventListener.h"
 #include "V8EventListenerList.h"
 #include "V8EventSource.h"
 #include "V8FileReader.h"
diff --git a/WebCore/bindings/v8/V8EventListener.cpp b/WebCore/bindings/v8/V8EventListener.cpp
new file mode 100644
index 0000000..808d342
--- /dev/null
+++ b/WebCore/bindings/v8/V8EventListener.cpp
@@ -0,0 +1,80 @@
+/*
+ * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ *
+ *     * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *     * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following disclaimer
+ * in the documentation and/or other materials provided with the
+ * distribution.
+ *     * Neither the name of Google Inc. nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "config.h"
+#include "V8EventListener.h"
+
+#include "V8Proxy.h"
+
+namespace WebCore {
+
+V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
+    : V8AbstractEventListener(isAttribute, worldContext)
+{
+    setListenerObject(listener);
+}
+
+v8::Local<v8::Function> V8EventListener::getListenerFunction(ScriptExecutionContext* context)
+{
+    v8::Local<v8::Object> listener = getListenerObject(context);
+
+    // Has the listener been disposed?
+    if (listener.IsEmpty())
+        return v8::Local<v8::Function>();
+
+    if (listener->IsFunction())
+        return v8::Local<v8::Function>::Cast(listener);
+
+    if (listener->IsObject()) {
+        v8::Local<v8::Value> property = listener->Get(v8::String::NewSymbol("handleEvent"));
+        if (property->IsFunction())
+            return v8::Local<v8::Function>::Cast(property);
+    }
+
+    return v8::Local<v8::Function>();
+}
+
+v8::Local<v8::Value> V8EventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
+{
+
+    v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
+    v8::Local<v8::Object> receiver = getReceiverObject(event);
+    if (handlerFunction.IsEmpty() || receiver.IsEmpty())
+        return v8::Local<v8::Value>();
+
+    v8::Handle<v8::Value> parameters[1] = { jsEvent };
+
+    if (V8Proxy* proxy = V8Proxy::retrieve(context))
+        return proxy->callFunction(handlerFunction, receiver, 1, parameters);
+
+    return v8::Local<v8::Value>();
+}
+
+} // namespace WebCore
diff --git a/WebCore/bindings/v8/V8EventListener.h b/WebCore/bindings/v8/V8EventListener.h
new file mode 100644
index 0000000..fb6c0bc
--- /dev/null
+++ b/WebCore/bindings/v8/V8EventListener.h
@@ -0,0 +1,63 @@
+/*
+ * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met:
+ *
+ *     * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *     * Redistributions in binary form must reproduce the above
+ * copyright notice, this list of conditions and the following disclaimer
+ * in the documentation and/or other materials provided with the
+ * distribution.
+ *     * Neither the name of Google Inc. nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef V8EventListener_h
+#define V8EventListener_h
+
+#include "V8AbstractEventListener.h"
+#include <v8.h>
+#include <wtf/PassRefPtr.h>
+
+namespace WebCore {
+
+    class Event;
+    class Frame;
+
+    // V8EventListener is a wrapper of a JS object implements EventListener interface (has handleEvent(event) method), or a JS function
+    // that can handle the event.
+    class V8EventListener : public V8AbstractEventListener {
+    public:
+        static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
+        {
+            return adoptRef(new V8EventListener(listener, isAttribute, worldContext));
+        }
+
+    protected:
+        V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext);
+
+        v8::Local<v8::Function> getListenerFunction(ScriptExecutionContext*);
+
+    private:
+      virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
+     };
+
+} // namespace WebCore
+
+#endif // V8EventListener_h
diff --git a/WebCore/bindings/v8/V8EventListenerList.h b/WebCore/bindings/v8/V8EventListenerList.h
index fdf211d..eea2213 100644
--- a/WebCore/bindings/v8/V8EventListenerList.h
+++ b/WebCore/bindings/v8/V8EventListenerList.h
@@ -31,7 +31,7 @@
 #ifndef V8EventListenerList_h
 #define V8EventListenerList_h
 
-#include "V8CustomEventListener.h"
+#include "V8EventListener.h"
 #include "V8HiddenPropertyName.h"
 
 #include <v8.h>
diff --git a/WebCore/bindings/v8/V8WorkerContextEventListener.h b/WebCore/bindings/v8/V8WorkerContextEventListener.h
index 1d0bfc8..68015e0 100644
--- a/WebCore/bindings/v8/V8WorkerContextEventListener.h
+++ b/WebCore/bindings/v8/V8WorkerContextEventListener.h
@@ -33,7 +33,7 @@
 
 #if ENABLE(WORKERS)
 
-#include "V8CustomEventListener.h"
+#include "V8EventListener.h"
 #include <v8.h>
 #include <wtf/PassRefPtr.h>
 
diff --git a/WebCore/bindings/v8/custom/V8CustomEventListener.cpp b/WebCore/bindings/v8/custom/V8CustomEventListener.cpp
deleted file mode 100644
index 24d752f..0000000
--- a/WebCore/bindings/v8/custom/V8CustomEventListener.cpp
+++ /dev/null
@@ -1,80 +0,0 @@
-/*
- * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "V8CustomEventListener.h"
-
-#include "V8Proxy.h"
-
-namespace WebCore {
-
-V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
-    : V8AbstractEventListener(isAttribute, worldContext)
-{
-    setListenerObject(listener);
-}
-
-v8::Local<v8::Function> V8EventListener::getListenerFunction(ScriptExecutionContext* context)
-{
-    v8::Local<v8::Object> listener = getListenerObject(context);
-
-    // Has the listener been disposed?
-    if (listener.IsEmpty())
-        return v8::Local<v8::Function>();
-
-    if (listener->IsFunction())
-        return v8::Local<v8::Function>::Cast(listener);
-
-    if (listener->IsObject()) {
-        v8::Local<v8::Value> property = listener->Get(v8::String::NewSymbol("handleEvent"));
-        if (property->IsFunction())
-            return v8::Local<v8::Function>::Cast(property);
-    }
-
-    return v8::Local<v8::Function>();
-}
-
-v8::Local<v8::Value> V8EventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
-{
-
-    v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
-    v8::Local<v8::Object> receiver = getReceiverObject(event);
-    if (handlerFunction.IsEmpty() || receiver.IsEmpty())
-        return v8::Local<v8::Value>();
-
-    v8::Handle<v8::Value> parameters[1] = { jsEvent };
-
-    if (V8Proxy* proxy = V8Proxy::retrieve(context))
-        return proxy->callFunction(handlerFunction, receiver, 1, parameters);
-
-    return v8::Local<v8::Value>();
-}
-
-} // namespace WebCore
diff --git a/WebCore/bindings/v8/custom/V8CustomEventListener.h b/WebCore/bindings/v8/custom/V8CustomEventListener.h
deleted file mode 100644
index f9d5385..0000000
--- a/WebCore/bindings/v8/custom/V8CustomEventListener.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef V8CustomEventListener_h
-#define V8CustomEventListener_h
-
-#include "V8AbstractEventListener.h"
-#include <v8.h>
-#include <wtf/PassRefPtr.h>
-
-namespace WebCore {
-
-    class Event;
-    class Frame;
-
-    // V8EventListener is a wrapper of a JS object implements EventListener interface (has handleEvent(event) method), or a JS function
-    // that can handle the event.
-    class V8EventListener : public V8AbstractEventListener {
-    public:
-        static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
-        {
-            return adoptRef(new V8EventListener(listener, isAttribute, worldContext));
-        }
-
-    protected:
-        V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext);
-
-        v8::Local<v8::Function> getListenerFunction(ScriptExecutionContext*);
-
-    private:
-      virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
-     };
-
-} // namespace WebCore
-
-#endif // V8CustomEventListener_h
diff --git a/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp b/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp
index d605b68..328a9c1 100644
--- a/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp
+++ b/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp
@@ -52,7 +52,7 @@
 #include "V8Binding.h"
 #include "V8BindingMacros.h"
 #include "V8BindingState.h"
-#include "V8CustomEventListener.h"
+#include "V8EventListener.h"
 #include "V8GCForContextDispose.h"
 #include "V8HiddenPropertyName.h"
 #include "V8HTMLAudioElementConstructor.h"
diff --git a/WebCore/bindings/v8/custom/V8LocationCustom.cpp b/WebCore/bindings/v8/custom/V8LocationCustom.cpp
index 34c7e28..a13222f 100644
--- a/WebCore/bindings/v8/custom/V8LocationCustom.cpp
+++ b/WebCore/bindings/v8/custom/V8LocationCustom.cpp
@@ -40,8 +40,8 @@
 #include "ScriptController.h"
 #include "V8Binding.h"
 #include "V8BindingState.h"
-#include "V8CustomEventListener.h"
 #include "V8DOMWindow.h"
+#include "V8EventListener.h"
 #include "V8Location.h"
 #include "V8Utilities.h"
 #include "V8Proxy.h"
diff --git a/WebCore/bindings/v8/custom/V8NodeCustom.cpp b/WebCore/bindings/v8/custom/V8NodeCustom.cpp
index 50b9899..a925861 100644
--- a/WebCore/bindings/v8/custom/V8NodeCustom.cpp
+++ b/WebCore/bindings/v8/custom/V8NodeCustom.cpp
@@ -40,13 +40,13 @@
 #include "V8BindingState.h"
 #include "V8CDATASection.h"
 #include "V8Comment.h"
-#include "V8CustomEventListener.h"
 #include "V8Document.h"
 #include "V8DocumentFragment.h"
 #include "V8DocumentType.h"
 #include "V8Element.h"
 #include "V8Entity.h"
 #include "V8EntityReference.h"
+#include "V8EventListener.h"
 #include "V8Node.h"
 #include "V8Notation.h"
 #include "V8ProcessingInstruction.h"
diff --git a/WebCore/bindings/v8/custom/V8NotificationCenterCustom.cpp b/WebCore/bindings/v8/custom/V8NotificationCenterCustom.cpp
index 340f0a8..f1357bd 100644
--- a/WebCore/bindings/v8/custom/V8NotificationCenterCustom.cpp
+++ b/WebCore/bindings/v8/custom/V8NotificationCenterCustom.cpp
@@ -37,8 +37,8 @@
 #include "Notification.h"
 #include "NotificationCenter.h"
 #include "V8Binding.h"
-#include "V8CustomEventListener.h"
 #include "V8CustomVoidCallback.h"
+#include "V8EventListener.h"
 #include "V8Notification.h"
 #include "V8Proxy.h"
 #include "V8Utilities.h"

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list