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

Side by Side Diff: Source/modules/push_messaging/ServiceWorkerGlobalScopePush.idl

Issue 285403002: Push API: define push event on Service Worker. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Avoid modifying modules/serviceworkers/. Created 6 years, 7 months 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 RuntimeEnabled=ServiceWorker,
dominicc (has gone to gerrit) 2014/05/22 06:52:28 Does this work? I thought you separated multiple v
Michael van Ouwerkerk 2014/05/23 18:32:03 Gating it on PushMessaging seems to be sufficient.
dominicc (has gone to gerrit) 2014/05/26 02:31:44 I agree that gating it on PushMessaging is fine; F
6 RuntimeEnabled=PushMessaging, 7 RuntimeEnabled=PushMessaging,
7 ] partial interface Navigator { 8 ] partial interface ServiceWorkerGlobalScope {
8 readonly attribute PushManager push; 9 attribute EventHandler onpush;
9 }; 10 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698