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

Side by Side Diff: Source/bindings/tests/results/core/V8SVGTestInterface.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 "V8SVGTestInterface.h" 8 #include "V8SVGTestInterface.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 v8::Local<v8::Signature> defaultSignature; 77 v8::Local<v8::Signature> defaultSignature;
78 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(isolate, func tionTemplate, "SVGTestInterface", v8::Local<v8::FunctionTemplate>(), V8SVGTestIn terface::internalFieldCount, 78 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(isolate, func tionTemplate, "SVGTestInterface", v8::Local<v8::FunctionTemplate>(), V8SVGTestIn terface::internalFieldCount,
79 0, 0, 79 0, 0,
80 V8SVGTestInterfaceAccessors, WTF_ARRAY_LENGTH(V8SVGTestInterfaceAccessor s), 80 V8SVGTestInterfaceAccessors, WTF_ARRAY_LENGTH(V8SVGTestInterfaceAccessor s),
81 0, 0); 81 0, 0);
82 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate(); 82 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate();
83 ALLOW_UNUSED_LOCAL(instanceTemplate); 83 ALLOW_UNUSED_LOCAL(instanceTemplate);
84 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate(); 84 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate();
85 ALLOW_UNUSED_LOCAL(prototypeTemplate); 85 ALLOW_UNUSED_LOCAL(prototypeTemplate);
86 86
87 prototypeTemplate->Set(v8::Symbol::GetToStringTag(isolate), v8AtomicString(i solate, "SVGTestInterface"));
88
87 // Custom toString template 89 // Custom toString template
88 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate()); 90 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate());
89 } 91 }
90 92
91 v8::Local<v8::FunctionTemplate> V8SVGTestInterface::domTemplate(v8::Isolate* iso late) 93 v8::Local<v8::FunctionTemplate> V8SVGTestInterface::domTemplate(v8::Isolate* iso late)
92 { 94 {
93 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8SVGTestInterfaceTemplate); 95 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8SVGTestInterfaceTemplate);
94 } 96 }
95 97
96 bool V8SVGTestInterface::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isolate) 98 bool V8SVGTestInterface::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isolate)
(...skipping 15 matching lines...) Expand all
112 { 114 {
113 scriptWrappable->toImpl<SVGTestInterface>()->ref(); 115 scriptWrappable->toImpl<SVGTestInterface>()->ref();
114 } 116 }
115 117
116 void V8SVGTestInterface::derefObject(ScriptWrappable* scriptWrappable) 118 void V8SVGTestInterface::derefObject(ScriptWrappable* scriptWrappable)
117 { 119 {
118 scriptWrappable->toImpl<SVGTestInterface>()->deref(); 120 scriptWrappable->toImpl<SVGTestInterface>()->deref();
119 } 121 }
120 122
121 } // namespace blink 123 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698