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

Side by Side Diff: Source/bindings/tests/results/core/V8TestInterfaceConstructor3.cpp

Issue 1017733003: [DO NOT LAND] Set @@toStringTag for DOM object prototypes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test expectations Created 5 years, 6 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 | Annotate | Revision Log
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 "V8TestInterfaceConstructor3.h" 8 #include "V8TestInterfaceConstructor3.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 0, 0, 74 0, 0,
75 0, 0, 75 0, 0,
76 0, 0); 76 0, 0);
77 functionTemplate->SetCallHandler(V8TestInterfaceConstructor3::constructorCal lback); 77 functionTemplate->SetCallHandler(V8TestInterfaceConstructor3::constructorCal lback);
78 functionTemplate->SetLength(1); 78 functionTemplate->SetLength(1);
79 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate(); 79 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate();
80 ALLOW_UNUSED_LOCAL(instanceTemplate); 80 ALLOW_UNUSED_LOCAL(instanceTemplate);
81 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate(); 81 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate();
82 ALLOW_UNUSED_LOCAL(prototypeTemplate); 82 ALLOW_UNUSED_LOCAL(prototypeTemplate);
83 83
84 prototypeTemplate->Set(v8::Symbol::GetToStringTag(isolate), v8AtomicString(i solate, "TestInterfaceConstructor3"));
85
84 // Custom toString template 86 // Custom toString template
85 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate()); 87 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate());
86 } 88 }
87 89
88 v8::Local<v8::FunctionTemplate> V8TestInterfaceConstructor3::domTemplate(v8::Iso late* isolate) 90 v8::Local<v8::FunctionTemplate> V8TestInterfaceConstructor3::domTemplate(v8::Iso late* isolate)
89 { 91 {
90 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8TestInterfaceConstructor3Template); 92 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8TestInterfaceConstructor3Template);
91 } 93 }
92 94
93 bool V8TestInterfaceConstructor3::hasInstance(v8::Local<v8::Value> v8Value, v8:: Isolate* isolate) 95 bool V8TestInterfaceConstructor3::hasInstance(v8::Local<v8::Value> v8Value, v8:: Isolate* isolate)
(...skipping 15 matching lines...) Expand all
109 { 111 {
110 scriptWrappable->toImpl<TestInterfaceConstructor3>()->ref(); 112 scriptWrappable->toImpl<TestInterfaceConstructor3>()->ref();
111 } 113 }
112 114
113 void V8TestInterfaceConstructor3::derefObject(ScriptWrappable* scriptWrappable) 115 void V8TestInterfaceConstructor3::derefObject(ScriptWrappable* scriptWrappable)
114 { 116 {
115 scriptWrappable->toImpl<TestInterfaceConstructor3>()->deref(); 117 scriptWrappable->toImpl<TestInterfaceConstructor3>()->deref();
116 } 118 }
117 119
118 } // namespace blink 120 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698