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

Unified Diff: chrome/common/chrome_notification_types.h

Issue 10701005: Extension Commands changed by the user now take effect immediately. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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/chrome_notification_types.h
===================================================================
--- chrome/common/chrome_notification_types.h (revision 144430)
+++ chrome/common/chrome_notification_types.h (working copy)
@@ -555,6 +555,16 @@
// ExtensionAction* that changed. The details are a WebContents*.
NOTIFICATION_EXTENSION_PAGE_ACTION_VISIBILITY_CHANGED,
+ // Sent when an extension command has been removed. The source is the profile
+ // and the details is a std::pair of two std::string objects (an extension ID
+ // and the name of the command being removed).
+ NOTIFICATION_EXTENSION_COMMAND_REMOVED,
+
+ // Sent when an extension command has been added. The source is the profile
+ // and the details is a std::pair of two std::string objects (an extension ID
+ // and the name of the command being added).
+ NOTIFICATION_EXTENSION_COMMAND_ADDED,
+
// A new extension RenderViewHost has been registered. The details are
// the RenderViewHost*.
NOTIFICATION_EXTENSION_VIEW_REGISTERED,

Powered by Google App Engine
This is Rietveld 408576698