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

Side by Side Diff: Source/bindings/tests/results/core/V8TestDictionaryDerived.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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
6 6
7 #include "config.h" 7 #include "config.h"
8 #include "V8TestDictionaryDerived.h" 8 #include "V8TestDictionaryDerived.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 72 }
73 73
74 if (impl.hasDerivedStringMemberWithDefault()) { 74 if (impl.hasDerivedStringMemberWithDefault()) {
75 dictionary->Set(v8String(isolate, "derivedStringMemberWithDefault"), v8S tring(isolate, impl.derivedStringMemberWithDefault())); 75 dictionary->Set(v8String(isolate, "derivedStringMemberWithDefault"), v8S tring(isolate, impl.derivedStringMemberWithDefault()));
76 } else { 76 } else {
77 dictionary->Set(v8String(isolate, "derivedStringMemberWithDefault"), v8S tring(isolate, String("default string value"))); 77 dictionary->Set(v8String(isolate, "derivedStringMemberWithDefault"), v8S tring(isolate, String("default string value")));
78 } 78 }
79 79
80 } 80 }
81 81
82 TestDictionaryDerivedImplementedAs NativeValueTraits<TestDictionaryDerivedImplem entedAs>::nativeValue(const v8::Local<v8::Value>& value, v8::Isolate* isolate, E xceptionState& exceptionState) 82 TestDictionaryDerivedImplementedAs NativeValueTraits<TestDictionaryDerivedImplem entedAs>::nativeValue(v8::Local<v8::Value> value, v8::Isolate* isolate, Exceptio nState& exceptionState)
83 { 83 {
84 TestDictionaryDerivedImplementedAs impl; 84 TestDictionaryDerivedImplementedAs impl;
85 V8TestDictionaryDerivedImplementedAs::toImpl(isolate, value, impl, exception State); 85 V8TestDictionaryDerivedImplementedAs::toImpl(isolate, value, impl, exception State);
86 return impl; 86 return impl;
87 } 87 }
88 88
89 } // namespace blink 89 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698