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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp

Issue 2731593003: bindings: Use fixed-size integer types in the generated code. (Closed)
Patch Set: Explain why 64-bit integers are sometimes not listed Created 3 years, 10 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
Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
index 7872fc93849db6bde50bf46e75318cd12bcdef33..c0f6cf3659d58dbb95d758624b404a156f565e45 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
@@ -67,7 +67,7 @@ static void legacyCallerMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
return;
}
- unsigned index;
+ uint32_t index;
index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
if (exceptionState.hadException())
return;
@@ -85,7 +85,7 @@ static void itemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
return;
}
- unsigned index;
+ uint32_t index;
index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
if (exceptionState.hadException())
return;
@@ -107,7 +107,7 @@ static void setItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
return;
}
- unsigned index;
+ uint32_t index;
TestInterfaceEmpty* value;
index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
if (exceptionState.hadException())
@@ -137,7 +137,7 @@ static void deleteItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) {
return;
}
- unsigned index;
+ uint32_t index;
index = toUInt32(info.GetIsolate(), info[0], NormalConversion, exceptionState);
if (exceptionState.hadException())
return;

Powered by Google App Engine
This is Rietveld 408576698