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

Unified Diff: chrome/browser/ui/webui/constrained_html_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/views/omnibox/omnibox_view_win.cc ('k') | chrome/browser/ui/webui/constrained_html_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/constrained_html_ui.h
===================================================================
--- chrome/browser/ui/webui/constrained_html_ui.h (revision 111170)
+++ chrome/browser/ui/webui/constrained_html_ui.h (working copy)
@@ -7,7 +7,6 @@
#pragma once
#include "chrome/browser/ui/webui/chrome_web_ui.h"
-#include "content/common/property_bag.h"
class ConstrainedWindow;
class HtmlDialogUIDelegate;
@@ -16,6 +15,10 @@
class TabContents;
class TabContentsWrapper;
+namespace base {
+template<class T> class PropertyAccessor;
+}
+
class ConstrainedHtmlUIDelegate {
public:
virtual HtmlDialogUIDelegate* GetHtmlDialogUIDelegate() = 0;
@@ -62,7 +65,7 @@
// Returns a property accessor that can be used to set the
// ConstrainedHtmlUIDelegate property on a TabContents.
- static PropertyAccessor<ConstrainedHtmlUIDelegate*>&
+ static base::PropertyAccessor<ConstrainedHtmlUIDelegate*>&
GetPropertyAccessor();
protected:
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_view_win.cc ('k') | chrome/browser/ui/webui/constrained_html_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698