Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Unified Diff: Source/bindings/dart/DartUtilities.h

Issue 27767003: Convert serialized values to ints if they are whole and less than 53 bits. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/bindings/dart/DartUtilities.cpp » ('j') | Source/bindings/dart/DartUtilities.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/dart/DartUtilities.h
diff --git a/Source/bindings/dart/DartUtilities.h b/Source/bindings/dart/DartUtilities.h
index aaeb4956fe1bc10c8493557acbf28d8982392fb0..15c8767a49e094371a341aa6e72943e5b1393e59 100644
--- a/Source/bindings/dart/DartUtilities.h
+++ b/Source/bindings/dart/DartUtilities.h
@@ -365,7 +365,7 @@ public:
}
return value;
}
- static Dart_Handle intToDart(int value)
+ static Dart_Handle intToDart(int64_t value)
{
return Dart_NewInteger(value);
}
« no previous file with comments | « no previous file | Source/bindings/dart/DartUtilities.cpp » ('j') | Source/bindings/dart/DartUtilities.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698