| 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 | 424 |
| 425 installPerContextEnabledProperties(wrapper, impl.get(), isolate); | 425 installPerContextEnabledProperties(wrapper, impl.get(), isolate); |
| 426 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceEventConstructor>(im
pl, &wrapperTypeInfo, wrapper, isolate, WrapperConfiguration::Independent); | 426 V8DOMWrapper::associateObjectWithWrapper<V8TestInterfaceEventConstructor>(im
pl, &wrapperTypeInfo, wrapper, isolate, WrapperConfiguration::Independent); |
| 427 return wrapper; | 427 return wrapper; |
| 428 } | 428 } |
| 429 | 429 |
| 430 void V8TestInterfaceEventConstructor::derefObject(void* object) | 430 void V8TestInterfaceEventConstructor::derefObject(void* object) |
| 431 { | 431 { |
| 432 fromInternalPointer(object)->deref(); | 432 fromInternalPointer(object)->deref(); |
| 433 } | 433 } |
| 434 |
| 434 template<> | 435 template<> |
| 435 v8::Handle<v8::Value> toV8NoInline(TestInterfaceEventConstructor* impl, v8::Hand
le<v8::Object> creationContext, v8::Isolate* isolate) | 436 v8::Handle<v8::Value> toV8NoInline(TestInterfaceEventConstructor* impl, v8::Hand
le<v8::Object> creationContext, v8::Isolate* isolate) |
| 436 { | 437 { |
| 437 return toV8(impl, creationContext, isolate); | 438 return toV8(impl, creationContext, isolate); |
| 438 } | 439 } |
| 439 | 440 |
| 440 } // namespace WebCore | 441 } // namespace WebCore |
| OLD | NEW |