Commit 5d5cec1e authored by eric@webkit.org's avatar eric@webkit.org

2010-01-28 Steve Block <steveblock@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: svn://svn.chromium.org/blink/trunk@54038 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent ecec6fce
2010-01-28 Steve Block <steveblock@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@chromium.org>
Reviewed by David Levin.
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment