| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "bindings/modules/v8/V8ServiceWorkerMessageEvent.h" | |
| 6 | |
| 7 #include "bindings/modules/v8/V8ServiceWorkerMessageEventInit.h" | |
| 8 #include "bindings/modules/v8/V8ServiceWorkerMessageEventInternal.h" | |
| 9 | |
| 10 namespace blink { | |
| 11 | |
| 12 void V8ServiceWorkerMessageEvent::constructorCustom( | |
| 13 const v8::FunctionCallbackInfo<v8::Value>& info) { | |
| 14 V8ServiceWorkerMessageEventInternal::constructorCustom< | |
| 15 ServiceWorkerMessageEvent, ServiceWorkerMessageEventInit>(info); | |
| 16 } | |
| 17 | |
| 18 void V8ServiceWorkerMessageEvent::dataAttributeGetterCustom( | |
| 19 const v8::FunctionCallbackInfo<v8::Value>& info) { | |
| 20 V8ServiceWorkerMessageEventInternal::dataAttributeGetterCustom< | |
| 21 ServiceWorkerMessageEvent>(info); | |
| 22 } | |
| 23 | |
| 24 } // namespace blink | |
| OLD | NEW |