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

Side by Side Diff: Source/bindings/tests/results/V8TestInterface.h

Issue 172033002: Remove WrapperTypeTraits (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 return static_cast<TestInterface*>(object); 71 return static_cast<TestInterface*>(object);
72 } 72 }
73 static void installPerContextEnabledProperties(v8::Handle<v8::Object>, TestI nterface*, v8::Isolate*); 73 static void installPerContextEnabledProperties(v8::Handle<v8::Object>, TestI nterface*, v8::Isolate*);
74 static void installPerContextEnabledMethods(v8::Handle<v8::Object>, v8::Isol ate*) { } 74 static void installPerContextEnabledMethods(v8::Handle<v8::Object>, v8::Isol ate*) { }
75 75
76 private: 76 private:
77 friend v8::Handle<v8::Object> wrap(TestInterface*, v8::Handle<v8::Object> cr eationContext, v8::Isolate*); 77 friend v8::Handle<v8::Object> wrap(TestInterface*, v8::Handle<v8::Object> cr eationContext, v8::Isolate*);
78 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestInterface>, v8::H andle<v8::Object> creationContext, v8::Isolate*); 78 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestInterface>, v8::H andle<v8::Object> creationContext, v8::Isolate*);
79 }; 79 };
80 80
81 template<>
82 class WrapperTypeTraits<TestInterface > {
83 public:
84 static const WrapperTypeInfo* wrapperTypeInfo() { return &V8TestInterface::w rapperTypeInfo; }
85 };
86
87 inline v8::Handle<v8::Object> wrap(TestInterface* impl, v8::Handle<v8::Object> c reationContext, v8::Isolate* isolate) 81 inline v8::Handle<v8::Object> wrap(TestInterface* impl, v8::Handle<v8::Object> c reationContext, v8::Isolate* isolate)
88 { 82 {
89 ASSERT(impl); 83 ASSERT(impl);
90 ASSERT(!DOMDataStore::containsWrapper<V8TestInterface>(impl, isolate)); 84 ASSERT(!DOMDataStore::containsWrapper<V8TestInterface>(impl, isolate));
91 return V8TestInterface::createWrapper(impl, creationContext, isolate); 85 return V8TestInterface::createWrapper(impl, creationContext, isolate);
92 } 86 }
93 87
94 inline v8::Handle<v8::Value> toV8(TestInterface* impl, v8::Handle<v8::Object> cr eationContext, v8::Isolate* isolate) 88 inline v8::Handle<v8::Value> toV8(TestInterface* impl, v8::Handle<v8::Object> cr eationContext, v8::Isolate* isolate)
95 { 89 {
96 if (UNLIKELY(!impl)) 90 if (UNLIKELY(!impl))
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 154
161 template<class CallbackInfo, class Wrappable> 155 template<class CallbackInfo, class Wrappable>
162 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<Te stInterface> impl, Wrappable* wrappable) 156 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<Te stInterface> impl, Wrappable* wrappable)
163 { 157 {
164 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable); 158 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
165 } 159 }
166 160
167 } 161 }
168 #endif // ENABLE(Condition1) || ENABLE(Condition2) 162 #endif // ENABLE(Condition1) || ENABLE(Condition2)
169 #endif // V8TestInterface_h 163 #endif // V8TestInterface_h
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestException.h ('k') | Source/bindings/tests/results/V8TestInterfaceCheckSecurity.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698