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

Side by Side Diff: Source/modules/notifications/Notification.idl

Issue 624033003: [WIP] Move Web Notifications to a WebFrame-less code path (Blink). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: current state Created 6 years, 2 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 16 matching lines...) Expand all
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 [ 32 [
33 GarbageCollected, 33 GarbageCollected,
34 ActiveDOMObject, 34 ActiveDOMObject,
35 Constructor(DOMString title, optional NotificationOptions options), 35 Constructor(DOMString title, optional NotificationOptions options),
36 ConstructorCallWith=ExecutionContext, 36 ConstructorCallWith=ExecutionContext,
37 Exposed=(Window,Worker),
37 MeasureAs=NotificationCreated, 38 MeasureAs=NotificationCreated,
38 RuntimeEnabled=Notifications, 39 RuntimeEnabled=Notifications,
39 ] interface Notification : EventTarget { 40 ] interface Notification : EventTarget {
40 [CallWith=ExecutionContext, MeasureAs=NotificationPermission] static readonl y attribute DOMString permission; 41 [CallWith=ExecutionContext, MeasureAs=NotificationPermission] static readonl y attribute DOMString permission;
41 [CallWith=ExecutionContext, MeasureAs=NotificationPermissionRequested] stati c void requestPermission(optional NotificationPermissionCallback callback); 42 [CallWith=ExecutionContext, MeasureAs=NotificationPermissionRequested] stati c void requestPermission(optional NotificationPermissionCallback callback);
42 43
43 // FIXME: Implement the Notification.get() method. 44 // FIXME: Implement the Notification.get() method.
44 45
45 attribute EventHandler onclick; 46 attribute EventHandler onclick;
46 [MeasureAs=NotificationShowEvent] attribute EventHandler onshow; 47 [MeasureAs=NotificationShowEvent] attribute EventHandler onshow;
47 attribute EventHandler onerror; 48 attribute EventHandler onerror;
48 attribute EventHandler onclose; 49 attribute EventHandler onclose;
49 50
50 readonly attribute DOMString title; 51 readonly attribute DOMString title;
51 readonly attribute DOMString dir; 52 readonly attribute DOMString dir;
52 readonly attribute DOMString lang; 53 readonly attribute DOMString lang;
53 readonly attribute DOMString body; 54 readonly attribute DOMString body;
54 readonly attribute DOMString tag; 55 readonly attribute DOMString tag;
55 readonly attribute DOMString icon; 56 readonly attribute DOMString icon;
56 57
57 [MeasureAs=NotificationClosed] void close(); 58 [MeasureAs=NotificationClosed] void close();
58 }; 59 };
OLDNEW
« no previous file with comments | « Source/modules/notifications/Notification.cpp ('k') | Source/modules/notifications/NotificationClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698