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

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

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 10 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 /* 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,
39 RaisesException=Constructor,
38 RuntimeEnabled=Notifications, 40 RuntimeEnabled=Notifications,
39 ] interface Notification : EventTarget { 41 ] interface Notification : EventTarget {
40 [CallWith=ExecutionContext, MeasureAs=NotificationPermission] static readonl y attribute DOMString permission; 42 [CallWith=ExecutionContext, MeasureAs=NotificationPermission] static readonl y attribute DOMString permission;
41 [CallWith=ExecutionContext, MeasureAs=NotificationPermissionRequested] stati c void requestPermission(optional NotificationPermissionCallback callback); 43 [CallWith=ExecutionContext, MeasureAs=NotificationPermissionRequested] stati c void requestPermission(optional NotificationPermissionCallback callback);
42 44
43 // FIXME: Implement the Notification.get() method. 45 // FIXME: Implement the Notification.get() method.
44 46
45 attribute EventHandler onclick; 47 attribute EventHandler onclick;
46 attribute EventHandler onshow; 48 [MeasureAs=NotificationShowEvent] attribute EventHandler onshow;
47 attribute EventHandler onerror; 49 attribute EventHandler onerror;
48 attribute EventHandler onclose; 50 [MeasureAs=NotificationCloseEvent] attribute EventHandler onclose;
49 51
50 readonly attribute DOMString title; 52 readonly attribute DOMString title;
51 readonly attribute DOMString dir; 53 readonly attribute DOMString dir;
52 readonly attribute DOMString lang; 54 readonly attribute DOMString lang;
53 readonly attribute DOMString body; 55 readonly attribute DOMString body;
54 readonly attribute DOMString tag; 56 readonly attribute DOMString tag;
55 readonly attribute DOMString icon; 57 readonly attribute DOMString icon;
56 58
59 [RuntimeEnabled=NotificationExperimental] readonly attribute sequence<unsign ed long>? vibrate;
60 readonly attribute boolean silent;
61 [CallWith=ScriptState] readonly attribute any data;
62
57 [MeasureAs=NotificationClosed] void close(); 63 [MeasureAs=NotificationClosed] void close();
58 }; 64 };
OLDNEW
« no previous file with comments | « modules/notifications/GetNotificationOptions.idl ('k') | modules/notifications/NotificationEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698