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

Side by Side Diff: third_party/WebKit/Source/bindings/modules/v8/custom/V8ServiceWorkerMessageEventCustom.cpp

Issue 2466513002: Deprecate ServiceWorkerMessageEvent in favor of MessageEvent (Closed)
Patch Set: Rebase and update cross-origin-objects-exceptions-expected.txt Created 4 years 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
OLDNEW
(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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/bindings/modules/BUILD.gn ('k') | third_party/WebKit/Source/bindings/modules/v8/custom/custom.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698