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

Unified Diff: Source/bindings/core/v8/Dictionary.h

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
« no previous file with comments | « no previous file | Source/bindings/core/v8/NativeValueTraits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/Dictionary.h
diff --git a/Source/bindings/core/v8/Dictionary.h b/Source/bindings/core/v8/Dictionary.h
index 608aae8aa9c1fcfedf8714b5a61c98850207efd1..ea879465e7107f2d69c283514d3b071a41992a22 100644
--- a/Source/bindings/core/v8/Dictionary.h
+++ b/Source/bindings/core/v8/Dictionary.h
@@ -132,7 +132,7 @@ private:
template<>
struct NativeValueTraits<Dictionary> {
- static inline Dictionary nativeValue(const v8::Handle<v8::Value>& value, v8::Isolate* isolate, ExceptionState& exceptionState)
+ static inline Dictionary nativeValue(v8::Handle<v8::Value> value, v8::Isolate* isolate, ExceptionState& exceptionState)
{
return Dictionary(value, isolate, exceptionState);
}
« no previous file with comments | « no previous file | Source/bindings/core/v8/NativeValueTraits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698