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

Unified Diff: Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp

Issue 1006323002: [bindings] Pass v8::Local<v8::Value> by value in NativeValueTraits<T>::nativeValue() (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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
diff --git a/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp b/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
index d6bce6e8ea1fdc358f0662cfbe10761df4c9570d..4f2a9b4dbef17e7e6f1600b4a001bc3a4d93e0c1 100644
--- a/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
+++ b/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
@@ -51,7 +51,7 @@ void toV8TestPermissiveDictionary(const TestPermissiveDictionary& impl, v8::Loca
}
-TestPermissiveDictionary NativeValueTraits<TestPermissiveDictionary>::nativeValue(const v8::Local<v8::Value>& value, v8::Isolate* isolate, ExceptionState& exceptionState)
+TestPermissiveDictionary NativeValueTraits<TestPermissiveDictionary>::nativeValue(v8::Local<v8::Value> value, v8::Isolate* isolate, ExceptionState& exceptionState)
{
TestPermissiveDictionary impl;
V8TestPermissiveDictionary::toImpl(isolate, value, impl, exceptionState);

Powered by Google App Engine
This is Rietveld 408576698