summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profile.h
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-03 20:08:59 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-03 20:08:59 +0000
commit36c1ff9fd1b301c7b2de0f364e9ba10835d3a9c6 (patch)
tree1db4b79cff59183ba947a7994522efaaab619c21 /chrome/browser/profile.h
parentad3c0f1de336eef69795f1228101cd0486ec0a4c (diff)
downloadchromium_src-36c1ff9fd1b301c7b2de0f364e9ba10835d3a9c6.zip
chromium_src-36c1ff9fd1b301c7b2de0f364e9ba10835d3a9c6.tar.gz
chromium_src-36c1ff9fd1b301c7b2de0f364e9ba10835d3a9c6.tar.bz2
AutoFill: Make PersonalDataManager RefCountedThreadSafe.
BUG=40617 TEST=none Review URL: http://codereview.chromium.org/2521001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48858 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.h')
-rw-r--r--chrome/browser/profile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/profile.h b/chrome/browser/profile.h
index 118608c..7f8a6a1 100644
--- a/chrome/browser/profile.h
+++ b/chrome/browser/profile.h
@@ -12,6 +12,7 @@
#include "base/basictypes.h"
#include "base/file_path.h"
+#include "base/ref_counted.h"
#include "base/scoped_ptr.h"
#include "base/timer.h"
#include "chrome/browser/spellcheck_host_observer.h"
@@ -627,7 +628,7 @@ class ProfileImpl : public Profile,
scoped_ptr<BrowserThemeProvider> theme_provider_;
scoped_refptr<WebKitContext> webkit_context_;
scoped_ptr<DesktopNotificationService> desktop_notification_service_;
- scoped_ptr<PersonalDataManager> personal_data_manager_;
+ scoped_refptr<PersonalDataManager> personal_data_manager_;
scoped_ptr<PinnedTabService> pinned_tab_service_;
bool history_service_created_;
bool favicon_service_created_;