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

Side by Side Diff: third_party/WebKit/Source/modules/notifications/NotificationAction.idl

Issue 1894143002: Delete the NotificationActionIcons flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address johnme's comments. Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // https://notifications.spec.whatwg.org/#dictdef-notificationaction 5 // https://notifications.spec.whatwg.org/#dictdef-notificationaction
6 6
7 [RuntimeEnabled=NotificationInlineReplies] enum NotificationActionType { 7 [RuntimeEnabled=NotificationInlineReplies] enum NotificationActionType {
8 "button", 8 "button",
9 "text" 9 "text"
10 }; 10 };
11 11
12 dictionary NotificationAction { 12 dictionary NotificationAction {
13 [RuntimeEnabled=NotificationInlineReplies] NotificationActionType type = "bu tton"; 13 [RuntimeEnabled=NotificationInlineReplies] NotificationActionType type = "bu tton";
14 required DOMString action; 14 required DOMString action;
15 required DOMString title; 15 required DOMString title;
16 [RuntimeEnabled=NotificationActionIcons] USVString icon; 16 USVString icon;
17 [RuntimeEnabled=NotificationInlineReplies] DOMString? placeholder = null; 17 [RuntimeEnabled=NotificationInlineReplies] DOMString? placeholder = null;
18 }; 18 };
OLDNEW
« no previous file with comments | « content/public/common/content_switches.cc ('k') | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698