| OLD | NEW |
| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 friend v8::Handle<v8::Object> wrap(TestInterfacePython2*, v8::Handle<v8::Obj
ect> creationContext, v8::Isolate*); | 69 friend v8::Handle<v8::Object> wrap(TestInterfacePython2*, v8::Handle<v8::Obj
ect> creationContext, v8::Isolate*); |
| 70 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestInterfacePython2>
, v8::Handle<v8::Object> creationContext, v8::Isolate*); | 70 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestInterfacePython2>
, v8::Handle<v8::Object> creationContext, v8::Isolate*); |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 template<> | 73 template<> |
| 74 class WrapperTypeTraits<TestInterfacePython2 > { | 74 class WrapperTypeTraits<TestInterfacePython2 > { |
| 75 public: | 75 public: |
| 76 static const WrapperTypeInfo* wrapperTypeInfo() { return &V8TestInterfacePyt
hon2::wrapperTypeInfo; } | 76 static const WrapperTypeInfo* wrapperTypeInfo() { return &V8TestInterfacePyt
hon2::wrapperTypeInfo; } |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 inline v8::Handle<v8::Object> wrap(TestInterfacePython2* impl, v8::Handle<v8::Ob
ject> creationContext, v8::Isolate* isolate) | 79 v8::Handle<v8::Object> wrap(TestInterfacePython2* impl, v8::Handle<v8::Object> c
reationContext, v8::Isolate*); |
| 80 { | |
| 81 ASSERT(impl); | |
| 82 ASSERT(!DOMDataStore::containsWrapper<V8TestInterfacePython2>(impl, isolate)
); | |
| 83 return V8TestInterfacePython2::createWrapper(impl, creationContext, isolate)
; | |
| 84 } | |
| 85 | 80 |
| 86 inline v8::Handle<v8::Value> toV8(TestInterfacePython2* impl, v8::Handle<v8::Obj
ect> creationContext, v8::Isolate* isolate) | 81 inline v8::Handle<v8::Value> toV8(TestInterfacePython2* impl, v8::Handle<v8::Obj
ect> creationContext, v8::Isolate* isolate) |
| 87 { | 82 { |
| 88 if (UNLIKELY(!impl)) | 83 if (UNLIKELY(!impl)) |
| 89 return v8::Null(isolate); | 84 return v8::Null(isolate); |
| 90 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestInterfacePyth
on2>(impl, isolate); | 85 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestInterfacePyth
on2>(impl, isolate); |
| 91 if (!wrapper.IsEmpty()) | 86 if (!wrapper.IsEmpty()) |
| 92 return wrapper; | 87 return wrapper; |
| 93 return wrap(impl, creationContext, isolate); | 88 return wrap(impl, creationContext, isolate); |
| 94 } | 89 } |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 } | 146 } |
| 152 | 147 |
| 153 template<class CallbackInfo, class Wrappable> | 148 template<class CallbackInfo, class Wrappable> |
| 154 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<Te
stInterfacePython2 > impl, Wrappable* wrappable) | 149 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<Te
stInterfacePython2 > impl, Wrappable* wrappable) |
| 155 { | 150 { |
| 156 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable); | 151 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable); |
| 157 } | 152 } |
| 158 | 153 |
| 159 } | 154 } |
| 160 #endif // V8TestInterfacePython2_h | 155 #endif // V8TestInterfacePython2_h |
| OLD | NEW |