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

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

Issue 993893002: Add the data attribute to the Notification object (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix layout test failures. Created 5 years, 9 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 attribute EventHandler onerror; 49 attribute EventHandler onerror;
50 [MeasureAs=NotificationCloseEvent] attribute EventHandler onclose; 50 [MeasureAs=NotificationCloseEvent] attribute EventHandler onclose;
51 51
52 readonly attribute DOMString title; 52 readonly attribute DOMString title;
53 readonly attribute DOMString dir; 53 readonly attribute DOMString dir;
54 readonly attribute DOMString lang; 54 readonly attribute DOMString lang;
55 readonly attribute DOMString body; 55 readonly attribute DOMString body;
56 readonly attribute DOMString tag; 56 readonly attribute DOMString tag;
57 readonly attribute DOMString icon; 57 readonly attribute DOMString icon;
58 readonly attribute boolean silent; 58 readonly attribute boolean silent;
59 [RuntimeEnabled=NotificationExperimental, CallWith=ScriptState] readonly att ribute any data;
59 60
60 [MeasureAs=NotificationClosed] void close(); 61 [MeasureAs=NotificationClosed] void close();
61 }; 62 };
OLDNEW
« no previous file with comments | « Source/modules/notifications/Notification.cpp ('k') | Source/modules/notifications/NotificationOptions.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698