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

eric at webkit.org eric at webkit.org
Thu Feb 4 21:31:47 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 86360d02551c5cd55e37bfb9ceb6dd751e2a41a3
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jan 29 02:57:58 2010 +0000

    2010-01-28  Steve Block  <steveblock at google.com>
    
            Reviewed by David Levin.
    
            Use long long rather than int64 in V8Binding.h
            https://bugs.webkit.org/show_bug.cgi?id=34270
    
            No new tests, build fix only.
    
            * bindings/v8/V8Binding.h: Modified.
            (WebCore::toInt64): Returns long long
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54038 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d546d7c..41b9095 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-01-28  Steve Block  <steveblock at google.com>
+
+        Reviewed by David Levin.
+
+        Use long long rather than int64 in V8Binding.h
+        https://bugs.webkit.org/show_bug.cgi?id=34270
+
+        No new tests, build fix only.
+
+        * bindings/v8/V8Binding.h: Modified.
+        (WebCore::toInt64): Returns long long
+
 2010-01-28  Avi Drissman  <avi at chromium.org>
 
         Reviewed by David Levin.
diff --git a/WebCore/bindings/v8/V8Binding.h b/WebCore/bindings/v8/V8Binding.h
index 8bf633e..439dfd7 100644
--- a/WebCore/bindings/v8/V8Binding.h
+++ b/WebCore/bindings/v8/V8Binding.h
@@ -112,9 +112,9 @@ namespace WebCore {
         return static_cast<float>(value->NumberValue());
     }
 
-    inline int64 toInt64(v8::Local<v8::Value> value)
+    inline long long toInt64(v8::Local<v8::Value> value)
     {
-        return static_cast<int64>(value->IntegerValue());
+        return static_cast<long long>(value->IntegerValue());
     }
 
     // FIXME: Drop this in favor of the type specific v8ValueToWebCoreString when we rework the code generation.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list