diff options
author | koz@chromium.org <koz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-26 01:30:56 +0000 |
---|---|---|
committer | koz@chromium.org <koz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-26 01:30:56 +0000 |
commit | 365dd5b9e48f129f8ebd7e6bd76b1e0754885871 (patch) | |
tree | 52f249f608e10ed8d13f4c150f4d55d7a667e380 /content | |
parent | b12f63913575aa06b3820937bc0eca8af072304e (diff) | |
download | chromium_src-365dd5b9e48f129f8ebd7e6bd76b1e0754885871.zip chromium_src-365dd5b9e48f129f8ebd7e6bd76b1e0754885871.tar.gz chromium_src-365dd5b9e48f129f8ebd7e6bd76b1e0754885871.tar.bz2 |
Handler settings page.
This change implements a settings page that allows users to manage protocol
handlers registered via navigator.registerProtocolHandler.
tony: could you review the ProtocolHandlerRegistry stuff?
estade: could you review the webui stuff?
Thanks!
TEST=Unit tests provided.
Review URL: http://codereview.chromium.org/7033018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86762 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/common/notification_type.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/common/notification_type.h b/content/common/notification_type.h index d16bdaa..98d2ad0 100644 --- a/content/common/notification_type.h +++ b/content/common/notification_type.h @@ -1309,6 +1309,10 @@ class NotificationType { HIDE_KEYBOARD_INVOKED, #endif + // Protocol Handler Registry ----------------------------------------------- + // Sent when a ProtocolHandlerRegistry is changed. + PROTOCOL_HANDLER_REGISTRY_CHANGED, + // Count (must be last) ---------------------------------------------------- // Used to determine the number of notification types. Not valid as // a type parameter when registering for or posting notifications. |