| Index: chrome/common/extensions/api/notifications.idl
|
| diff --git a/chrome/common/extensions/api/notifications.idl b/chrome/common/extensions/api/notifications.idl
|
| index 5e24848e1187d8ef5bba01e38b531968efea09e9..5808bc466dec01e193664a9254bf0d35d6a86a05 100644
|
| --- a/chrome/common/extensions/api/notifications.idl
|
| +++ b/chrome/common/extensions/api/notifications.idl
|
| @@ -41,17 +41,17 @@ namespace notifications {
|
|
|
| dictionary NotificationOptions {
|
| // Which type of notification to display.
|
| - TemplateType type;
|
| + TemplateType? type;
|
|
|
| // Sender's avatar, app icon, or a thumbnail for image notifications.
|
| - DOMString iconUrl;
|
| + DOMString? iconUrl;
|
| [nodoc] NotificationBitmap? iconBitmap;
|
|
|
| // Title of the notification (e.g. sender name for email).
|
| - DOMString title;
|
| + DOMString? title;
|
|
|
| // Main notification content.
|
| - DOMString message;
|
| + DOMString? message;
|
|
|
| // Priority ranges from -2 to 2. -2 is lowest priority. 2 is highest. Zero
|
| // is default.
|
|
|