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

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

Issue 1017733003: [DO NOT LAND] Set @@toStringTag for DOM object prototypes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More test rebaselines 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 | 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 "V8TestInterfaceCustomConstructor.h" 8 #include "V8TestInterfaceCustomConstructor.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 0, 0, 57 0, 0,
58 0, 0, 58 0, 0,
59 0, 0); 59 0, 0);
60 functionTemplate->SetCallHandler(V8TestInterfaceCustomConstructor::construct orCallback); 60 functionTemplate->SetCallHandler(V8TestInterfaceCustomConstructor::construct orCallback);
61 functionTemplate->SetLength(0); 61 functionTemplate->SetLength(0);
62 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate(); 62 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate();
63 ALLOW_UNUSED_LOCAL(instanceTemplate); 63 ALLOW_UNUSED_LOCAL(instanceTemplate);
64 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate(); 64 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate();
65 ALLOW_UNUSED_LOCAL(prototypeTemplate); 65 ALLOW_UNUSED_LOCAL(prototypeTemplate);
66 66
67 instanceTemplate->Set(v8::Symbol::GetToStringTag(isolate), v8AtomicString(is olate, "TestInterfaceCustomConstructor"));
68
69 prototypeTemplate->Set(v8::Symbol::GetToStringTag(isolate), v8AtomicString(i solate, "TestInterfaceCustomConstructorPrototype"));
70
67 // Custom toString template 71 // Custom toString template
68 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate()); 72 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate());
69 } 73 }
70 74
71 v8::Local<v8::FunctionTemplate> V8TestInterfaceCustomConstructor::domTemplate(v8 ::Isolate* isolate) 75 v8::Local<v8::FunctionTemplate> V8TestInterfaceCustomConstructor::domTemplate(v8 ::Isolate* isolate)
72 { 76 {
73 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8TestInterfaceCustomConstructorTemplate); 77 return V8DOMConfiguration::domClassTemplate(isolate, const_cast<WrapperTypeI nfo*>(&wrapperTypeInfo), installV8TestInterfaceCustomConstructorTemplate);
74 } 78 }
75 79
76 bool V8TestInterfaceCustomConstructor::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isolate) 80 bool V8TestInterfaceCustomConstructor::hasInstance(v8::Local<v8::Value> v8Value, v8::Isolate* isolate)
(...skipping 15 matching lines...) Expand all
92 { 96 {
93 scriptWrappable->toImpl<TestInterfaceCustomConstructor>()->ref(); 97 scriptWrappable->toImpl<TestInterfaceCustomConstructor>()->ref();
94 } 98 }
95 99
96 void V8TestInterfaceCustomConstructor::derefObject(ScriptWrappable* scriptWrappa ble) 100 void V8TestInterfaceCustomConstructor::derefObject(ScriptWrappable* scriptWrappa ble)
97 { 101 {
98 scriptWrappable->toImpl<TestInterfaceCustomConstructor>()->deref(); 102 scriptWrappable->toImpl<TestInterfaceCustomConstructor>()->deref();
99 } 103 }
100 104
101 } // namespace blink 105 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698