diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-06 00:42:15 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-06 00:42:15 +0000 |
commit | def1171cbb6c8857fd528736eb20dad5a3b50ecb (patch) | |
tree | a38192e35a59a99fd28601d19aeb242bf3fc8c30 /chrome/browser/automation/automation_profile_impl.h | |
parent | 358e4745427bb4a8a28545c2c4718978c493c531 (diff) | |
download | chromium_src-def1171cbb6c8857fd528736eb20dad5a3b50ecb.zip chromium_src-def1171cbb6c8857fd528736eb20dad5a3b50ecb.tar.gz chromium_src-def1171cbb6c8857fd528736eb20dad5a3b50ecb.tar.bz2 |
Add a stub implementation of PersonalDataManager, the connection between the database and the autofill manager.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/360027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31181 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/automation_profile_impl.h')
-rw-r--r-- | chrome/browser/automation/automation_profile_impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/automation/automation_profile_impl.h b/chrome/browser/automation/automation_profile_impl.h index a794c97..ac01b76 100644 --- a/chrome/browser/automation/automation_profile_impl.h +++ b/chrome/browser/automation/automation_profile_impl.h @@ -111,6 +111,9 @@ class AutomationProfileImpl : public Profile { virtual bool HasCreatedDownloadManager() const { return original_profile_->HasCreatedDownloadManager(); } + virtual PersonalDataManager* GetPersonalDataManager() { + return original_profile_->GetPersonalDataManager(); + } virtual void InitThemes() { return original_profile_->InitThemes(); } |