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

Unified Diff: chrome/browser/ui/webui/html_dialog_ui.h

Issue 8652002: Move PropertyBag to base. Originally this was in chrome\common because only chrome used it. Now t... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: move to base namespace and forward declare where possible Created 9 years, 1 month 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
« no previous file with comments | « chrome/browser/ui/webui/constrained_html_ui.cc ('k') | chrome/browser/ui/webui/html_dialog_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/html_dialog_ui.h
===================================================================
--- chrome/browser/ui/webui/html_dialog_ui.h (revision 111170)
+++ chrome/browser/ui/webui/html_dialog_ui.h (working copy)
@@ -11,19 +11,19 @@
#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.
class HtmlDialogUIDelegate {
public:
@@ -105,7 +105,7 @@
// 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
« no previous file with comments | « chrome/browser/ui/webui/constrained_html_ui.cc ('k') | chrome/browser/ui/webui/html_dialog_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698