Chromium Code Reviews

Unified Diff: Source/bindings/tests/results/modules/UnionTypesModules.h

Issue 1027613002: [bindings] Refactor NativeValueTraits<T>::nativeValue to accept isolate as first parameter. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/bindings/tests/results/modules/UnionTypesModules.h
diff --git a/Source/bindings/tests/results/modules/UnionTypesModules.h b/Source/bindings/tests/results/modules/UnionTypesModules.h
index 7b602e7ded480b38c807445fedb46353614fbc60..bedb8a7d541e31740bbe4994bc0bf73b9c8345fa 100644
--- a/Source/bindings/tests/results/modules/UnionTypesModules.h
+++ b/Source/bindings/tests/results/modules/UnionTypesModules.h
@@ -61,7 +61,7 @@ inline void v8SetReturnValue(const CallbackInfo& callbackInfo, BooleanOrString&
template <>
struct NativeValueTraits<BooleanOrString> {
- static BooleanOrString nativeValue(v8::Local<v8::Value>, v8::Isolate*, ExceptionState&);
+ static BooleanOrString nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
};
} // namespace blink

Powered by Google App Engine