diff options
Diffstat (limited to 'chrome/browser/extensions/extension_dom_ui.h')
-rw-r--r-- | chrome/browser/extensions/extension_dom_ui.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_dom_ui.h b/chrome/browser/extensions/extension_dom_ui.h index d5f146d..56f1291 100644 --- a/chrome/browser/extensions/extension_dom_ui.h +++ b/chrome/browser/extensions/extension_dom_ui.h @@ -23,7 +23,9 @@ class TabContents; struct ViewHostMsg_DomMessage_Params; // This class implements DOMUI for extensions and allows extensions to put UI in -// the main tab contents area. +// the main tab contents area. For example, each extension can specify an +// "options_page", and that page is displayed in the tab contents area and is +// hosted by this class. class ExtensionDOMUI : public DOMUI, public ExtensionFunctionDispatcher::Delegate { @@ -92,6 +94,8 @@ class ExtensionDOMUI scoped_ptr<ExtensionFunctionDispatcher> extension_function_dispatcher_; + // TODO(aa): This seems out of place. Why is it not with the event routers for + // the other extension APIs? scoped_ptr<ExtensionBookmarkManagerEventRouter> extension_bookmark_manager_event_router_; }; |