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

Unified Diff: chrome/common/extensions/api/experimental_notification.idl

Issue 11116016: Hook up API to notification_ui_manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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: 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);

Powered by Google App Engine
This is Rietveld 408576698