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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/LongCallbackFunction.h

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/LongCallbackFunction.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/LongCallbackFunction.h b/third_party/WebKit/Source/bindings/tests/results/core/LongCallbackFunction.h
index ecf82d0834758b86422bd501f7a7384b8697cdf9..760c06c3d4623c55b9e8a342cb197fcd1ff2e5bf 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/LongCallbackFunction.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/LongCallbackFunction.h
@@ -32,7 +32,7 @@ class CORE_EXPORT LongCallbackFunction final : public GarbageCollectedFinalized<
DECLARE_TRACE();
DECLARE_TRACE_WRAPPERS();
- bool call(ScriptWrappable* scriptWrappable, int num1, int num2, int& returnValue);
+ bool call(ScriptWrappable* scriptWrappable, int32_t num1, int32_t num2, int32_t& returnValue);
v8::Local<v8::Function> v8Value(v8::Isolate* isolate) {
return m_callback.newLocal(isolate);

Powered by Google App Engine
This is Rietveld 408576698