diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-23 00:58:23 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-23 00:58:23 +0000 |
commit | 45644f6cc27340a43cddec94054c0c90ef65b7c9 (patch) | |
tree | 18aa26a314a5ff51bc82c40cb709427ebe8a754a /chrome/browser/ui/webui/html_dialog_ui.h | |
parent | ffe38f8add90e8c29055cd2aed4937ed5c45273a (diff) | |
download | chromium_src-45644f6cc27340a43cddec94054c0c90ef65b7c9.zip chromium_src-45644f6cc27340a43cddec94054c0c90ef65b7c9.tar.gz chromium_src-45644f6cc27340a43cddec94054c0c90ef65b7c9.tar.bz2 |
Move PropertyBag to base. Originally this was in chrome\common because only chrome used it. Now that chrome and content use it, and that we want to only expose interface through the content API, this belongs in base.
BUG=98716
Review URL: http://codereview.chromium.org/8652002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111266 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/webui/html_dialog_ui.h')
-rw-r--r-- | chrome/browser/ui/webui/html_dialog_ui.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/ui/webui/html_dialog_ui.h b/chrome/browser/ui/webui/html_dialog_ui.h index 9e26f85..390790d 100644 --- a/chrome/browser/ui/webui/html_dialog_ui.h +++ b/chrome/browser/ui/webui/html_dialog_ui.h @@ -11,17 +11,17 @@ #include "base/string16.h" #include "chrome/browser/ui/webui/chrome_web_ui.h" -#include "content/common/property_bag.h" #include "googleurl/src/gurl.h" -namespace gfx { -class Size; -} - struct ContextMenuParams; namespace base { class ListValue; +template<class T> class PropertyAccessor; +} + +namespace gfx { +class Size; } // Implement this class to receive notifications. @@ -105,7 +105,7 @@ class HtmlDialogUI : public ChromeWebUI { // Returns the PropertyBag accessor object used to write the delegate pointer // into the TabContents (see class-level comment above). - static PropertyAccessor<HtmlDialogUIDelegate*>& GetPropertyAccessor(); + static base::PropertyAccessor<HtmlDialogUIDelegate*>& GetPropertyAccessor(); private: // WebUI |