Chromium Code Reviews| Index: chrome/common/extensions/api/experimental_notification.idl |
| diff --git a/chrome/common/extensions/api/experimental_notification.idl b/chrome/common/extensions/api/experimental_notification.idl |
| index 7e9a2f0f196dafa9d3c679de499d2692f8d15822..8dccaf52130a07865f83f8b70eb0f57e4383cb52 100644 |
| --- a/chrome/common/extensions/api/experimental_notification.idl |
| +++ b/chrome/common/extensions/api/experimental_notification.idl |
| @@ -4,13 +4,17 @@ |
| [nodoc] namespace experimental.notification { |
| dictionary ShowOptions { |
| - DOMString text; |
| + DOMString iconUrl; |
| + DOMString title; |
| + DOMString message; |
| + DOMString replaceId; |
| // Used for internal event routing. Do not set or rely on its value. |
| [nodoc] long? srcId; |
| }; |
| dictionary ShowInfo { |
| + boolean result; |
| }; |
| callback ShowCallback = void (ShowInfo showInfo); |