diff options
Diffstat (limited to 'chrome/browser/ui/tab_contents/tab_contents_wrapper.cc')
-rw-r--r-- | chrome/browser/ui/tab_contents/tab_contents_wrapper.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/ui/tab_contents/tab_contents_wrapper.cc b/chrome/browser/ui/tab_contents/tab_contents_wrapper.cc index a8b57fe..0413250 100644 --- a/chrome/browser/ui/tab_contents/tab_contents_wrapper.cc +++ b/chrome/browser/ui/tab_contents/tab_contents_wrapper.cc @@ -65,7 +65,7 @@ namespace { -static base::LazyInstance<PropertyAccessor<TabContentsWrapper*> > +static base::LazyInstance<base::PropertyAccessor<TabContentsWrapper*> > g_tab_contents_wrapper_property_accessor = LAZY_INSTANCE_INITIALIZER; // The list of prefs we want to observe. @@ -362,7 +362,8 @@ TabContentsWrapper::~TabContentsWrapper() { infobar_tab_helper_.reset(); } -PropertyAccessor<TabContentsWrapper*>* TabContentsWrapper::property_accessor() { +base::PropertyAccessor<TabContentsWrapper*>* + TabContentsWrapper::property_accessor() { return g_tab_contents_wrapper_property_accessor.Pointer(); } |