| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 namespace WebCore { | 68 namespace WebCore { |
| 69 const WrapperTypeInfo V8TestInterfaceConstructor::wrapperTypeInfo = { gin::kEmbe
dderBlink, V8TestInterfaceConstructor::GetTemplate, V8TestInterfaceConstructor::
derefObject, 0, 0, 0, V8TestInterfaceConstructor::installPerContextEnabledMethod
s, 0, WrapperTypeObjectPrototype }; | 69 const WrapperTypeInfo V8TestInterfaceConstructor::wrapperTypeInfo = { gin::kEmbe
dderBlink, V8TestInterfaceConstructor::GetTemplate, V8TestInterfaceConstructor::
derefObject, 0, 0, 0, V8TestInterfaceConstructor::installPerContextEnabledMethod
s, 0, WrapperTypeObjectPrototype }; |
| 70 | 70 |
| 71 namespace TestInterfaceConstructorV8Internal { | 71 namespace TestInterfaceConstructorV8Internal { |
| 72 | 72 |
| 73 template <typename T> void V8_USE(T) { } | 73 template <typename T> void V8_USE(T) { } |
| 74 | 74 |
| 75 static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) | 75 static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) |
| 76 { | 76 { |
| 77 | |
| 78 RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(); | 77 RefPtr<TestInterfaceConstructor> impl = TestInterfaceConstructor::create(); |
| 79 v8::Handle<v8::Object> wrapper = info.Holder(); | 78 v8::Handle<v8::Object> wrapper = info.Holder(); |
| 80 | 79 |
| 81 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceConstructor>(impl.re
lease(), &V8TestInterfaceConstructor::wrapperTypeInfo, wrapper, info.GetIsolate(
), WrapperConfiguration::Dependent); | 80 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceConstructor>(impl.re
lease(), &V8TestInterfaceConstructor::wrapperTypeInfo, wrapper, info.GetIsolate(
), WrapperConfiguration::Dependent); |
| 82 v8SetReturnValue(info, wrapper); | 81 v8SetReturnValue(info, wrapper); |
| 83 } | 82 } |
| 84 | 83 |
| 85 } // namespace TestInterfaceConstructorV8Internal | 84 } // namespace TestInterfaceConstructorV8Internal |
| 86 | 85 |
| 87 void V8TestInterfaceConstructor::constructorCallback(const v8::FunctionCallbackI
nfo<v8::Value>& info) | 86 void V8TestInterfaceConstructor::constructorCallback(const v8::FunctionCallbackI
nfo<v8::Value>& info) |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 fromInternalPointer(object)->deref(); | 174 fromInternalPointer(object)->deref(); |
| 176 } | 175 } |
| 177 | 176 |
| 178 template<> | 177 template<> |
| 179 v8::Handle<v8::Value> toV8NoInline(TestInterfaceConstructor* impl, v8::Handle<v8
::Object> creationContext, v8::Isolate* isolate) | 178 v8::Handle<v8::Value> toV8NoInline(TestInterfaceConstructor* impl, v8::Handle<v8
::Object> creationContext, v8::Isolate* isolate) |
| 180 { | 179 { |
| 181 return toV8(impl, creationContext, isolate); | 180 return toV8(impl, creationContext, isolate); |
| 182 } | 181 } |
| 183 | 182 |
| 184 } // namespace WebCore | 183 } // namespace WebCore |
| OLD | NEW |