| Index: chrome/browser/ui/webui/html_dialog_ui.cc
|
| ===================================================================
|
| --- chrome/browser/ui/webui/html_dialog_ui.cc (revision 111170)
|
| +++ chrome/browser/ui/webui/html_dialog_ui.cc (working copy)
|
| @@ -7,6 +7,7 @@
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| #include "base/lazy_instance.h"
|
| +#include "base/property_bag.h"
|
| #include "base/values.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| #include "content/browser/renderer_host/render_view_host.h"
|
| @@ -14,7 +15,7 @@
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/common/bindings_policy.h"
|
|
|
| -static base::LazyInstance<PropertyAccessor<HtmlDialogUIDelegate*> >
|
| +static base::LazyInstance<base::PropertyAccessor<HtmlDialogUIDelegate*> >
|
| g_html_dialog_ui_property_accessor = LAZY_INSTANCE_INITIALIZER;
|
|
|
| HtmlDialogUI::HtmlDialogUI(TabContents* tab_contents)
|
| @@ -37,7 +38,8 @@
|
| }
|
|
|
| // static
|
| -PropertyAccessor<HtmlDialogUIDelegate*>& HtmlDialogUI::GetPropertyAccessor() {
|
| +base::PropertyAccessor<HtmlDialogUIDelegate*>&
|
| + HtmlDialogUI::GetPropertyAccessor() {
|
| return g_html_dialog_ui_property_accessor.Get();
|
| }
|
|
|
|
|