[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

steveblock at google.com steveblock at google.com
Wed Dec 22 15:37:27 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 5b98de7825f9c8b4635e2a0713acb76d781d859e
Author: steveblock at google.com <steveblock at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 9 15:46:52 2010 +0000

    2010-11-09  Steve Block  <steveblock at google.com>
    
            Reviewed by Andreas Kling.
    
            Unused parameter warning causes JSC build failure with deviceorientation
            https://bugs.webkit.org/show_bug.cgi?id=49251
    
            No new tests, build fix only.
    
            * bindings/js/JSDeviceMotionEventCustom.cpp:
            (WebCore::JSDeviceMotionEvent::interval):
            * bindings/js/JSDeviceOrientationEventCustom.cpp:
            (WebCore::JSDeviceOrientationEvent::alpha):
            (WebCore::JSDeviceOrientationEvent::beta):
            (WebCore::JSDeviceOrientationEvent::gamma):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71632 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 30c7e58..56d8a7c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,19 @@
+2010-11-09  Steve Block  <steveblock at google.com>
+
+        Reviewed by Andreas Kling.
+
+        Unused parameter warning causes JSC build failure with deviceorientation
+        https://bugs.webkit.org/show_bug.cgi?id=49251
+
+        No new tests, build fix only.
+
+        * bindings/js/JSDeviceMotionEventCustom.cpp:
+        (WebCore::JSDeviceMotionEvent::interval):
+        * bindings/js/JSDeviceOrientationEventCustom.cpp:
+        (WebCore::JSDeviceOrientationEvent::alpha):
+        (WebCore::JSDeviceOrientationEvent::beta):
+        (WebCore::JSDeviceOrientationEvent::gamma):
+
 2010-11-09  Renata Hodovan  <reni at webkit.org>
 
         Reviewed by Nikolas Zimmermann.
diff --git a/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp b/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp
index 7bb09a9..503d64f 100644
--- a/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp
+++ b/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp
@@ -153,7 +153,7 @@ JSValue JSDeviceMotionEvent::rotationRate(ExecState* exec) const
     return createRotationRateObject(imp->deviceMotionData()->rotationRate(), exec);
 }
 
-JSValue JSDeviceMotionEvent::interval(ExecState* exec) const
+JSValue JSDeviceMotionEvent::interval(ExecState*) const
 {
     DeviceMotionEvent* imp = static_cast<DeviceMotionEvent*>(impl());
     if (!imp->deviceMotionData()->canProvideInterval())
diff --git a/WebCore/bindings/js/JSDeviceOrientationEventCustom.cpp b/WebCore/bindings/js/JSDeviceOrientationEventCustom.cpp
index 9074a6b..c71364a 100644
--- a/WebCore/bindings/js/JSDeviceOrientationEventCustom.cpp
+++ b/WebCore/bindings/js/JSDeviceOrientationEventCustom.cpp
@@ -35,7 +35,7 @@ using namespace JSC;
 
 namespace WebCore {
 
-JSValue JSDeviceOrientationEvent::alpha(ExecState* exec) const
+JSValue JSDeviceOrientationEvent::alpha(ExecState*) const
 {
     DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl());
     if (!imp->orientation()->canProvideAlpha())
@@ -43,7 +43,7 @@ JSValue JSDeviceOrientationEvent::alpha(ExecState* exec) const
     return jsNumber(imp->orientation()->alpha());
 }
 
-JSValue JSDeviceOrientationEvent::beta(ExecState* exec) const
+JSValue JSDeviceOrientationEvent::beta(ExecState*) const
 {
     DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl());
     if (!imp->orientation()->canProvideBeta())
@@ -51,7 +51,7 @@ JSValue JSDeviceOrientationEvent::beta(ExecState* exec) const
     return jsNumber(imp->orientation()->beta());
 }
 
-JSValue JSDeviceOrientationEvent::gamma(ExecState* exec) const
+JSValue JSDeviceOrientationEvent::gamma(ExecState*) const
 {
     DeviceOrientationEvent* imp = static_cast<DeviceOrientationEvent*>(impl());
     if (!imp->orientation()->canProvideGamma())

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list