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

Unified Diff: modules/notifications/NotificationOptions.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, 11 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
Index: modules/notifications/NotificationOptions.idl
diff --git a/modules/notifications/NotificationOptions.idl b/modules/notifications/NotificationOptions.idl
index 823032260dbf41e44fe4336f6f80ccfa73a38318..364907ecd5f001f352a63e93bf13fc05eba8aa99 100644
--- a/modules/notifications/NotificationOptions.idl
+++ b/modules/notifications/NotificationOptions.idl
@@ -10,12 +10,14 @@ enum NotificationDirection {
"rtl"
};
-[
- GarbageCollected
-] dictionary NotificationOptions {
+dictionary NotificationOptions {
NotificationDirection dir = "auto";
DOMString lang = "";
DOMString body = "";
DOMString tag = "";
DOMString icon;
+ // TODO(sh919.park): vibrate should be ([Clamp] unsigned long or sequence<unsigned long>)
+ (unsigned long or sequence<unsigned long>) vibrate;
+ boolean silent = false;
+ any data = null;
};
« no previous file with comments | « modules/notifications/NotificationEventInit.idl ('k') | modules/notifications/ServiceWorkerGlobalScopeNotifications.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698