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

Unified Diff: third_party/WebCore/notifications/Notification.idl

Issue 9987001: Roll IDL forward to multivm@358 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Roll to 358 Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebCore/inspector/InspectorFrontendHost.idl ('k') | third_party/WebCore/page/DOMWindow.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/notifications/Notification.idl
diff --git a/third_party/WebCore/notifications/Notification.idl b/third_party/WebCore/notifications/Notification.idl
index 3156a8d0f5c1f918da360a0f9354a0542271e4f9..1fb6746d4473cdcf993fad468183692513380c22 100644
--- a/third_party/WebCore/notifications/Notification.idl
+++ b/third_party/WebCore/notifications/Notification.idl
@@ -38,7 +38,12 @@ module threads {
OmitConstructor
] Notification {
void show();
+#if defined(ENABLE_LEGACY_NOTIFICATIONS) && ENABLE_LEGACY_NOTIFICATIONS
void cancel();
+#endif
+#if defined(ENABLE_NOTIFICATIONS) && ENABLE_NOTIFICATIONS
+ void close();
+#endif
attribute EventListener onshow;
#if defined(ENABLE_LEGACY_NOTIFICATIONS) && ENABLE_LEGACY_NOTIFICATIONS
@@ -49,7 +54,12 @@ module threads {
attribute EventListener onclick;
attribute DOMString dir;
+#if defined(ENABLE_LEGACY_NOTIFICATIONS) && ENABLE_LEGACY_NOTIFICATIONS
attribute DOMString replaceId;
+#endif
+#if defined(ENABLE_NOTIFICATIONS) && ENABLE_NOTIFICATIONS
+ attribute DOMString tag;
+#endif
// EventTarget interface
void addEventListener(in DOMString type,
« no previous file with comments | « third_party/WebCore/inspector/InspectorFrontendHost.idl ('k') | third_party/WebCore/page/DOMWindow.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698