diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-07 12:01:45 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-07 12:01:45 +0000 |
commit | 2bd5169afa8a20be076e2cb0a7ac69022d2b2c04 (patch) | |
tree | 2e5ddbfaf1497536f395f87b8c713e45e70a1a79 /chrome/browser/browsing_data | |
parent | d23162e0c880999785c356d3aa5b0f1a608f3d52 (diff) | |
download | chromium_src-2bd5169afa8a20be076e2cb0a7ac69022d2b2c04.zip chromium_src-2bd5169afa8a20be076e2cb0a7ac69022d2b2c04.tar.gz chromium_src-2bd5169afa8a20be076e2cb0a7ac69022d2b2c04.tar.bz2 |
Move PasswordStore and friends into the password_manager component.
Moves the following into the PasswordManager component:
- PasswordStoreConsumer
- PasswordStoreChange
- PasswordStore
- PasswordStoreDefault
- TestPasswordStore
Other than elimination of stale includes, no refactorings were required to
perform these moves. MockPasswordStore is left for followup work as some
refactoring is still required there.
BUG=334656,334657,334658,334659,334664
TBR=thakis
Review URL: https://codereview.chromium.org/139443003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@249675 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browsing_data')
-rw-r--r-- | chrome/browser/browsing_data/browsing_data_remover.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/browsing_data/browsing_data_remover.cc b/chrome/browser/browsing_data/browsing_data_remover.cc index 870696d..c241596 100644 --- a/chrome/browser/browsing_data/browsing_data_remover.cc +++ b/chrome/browser/browsing_data/browsing_data_remover.cc @@ -32,7 +32,6 @@ #include "chrome/browser/media/media_device_id_salt.h" #include "chrome/browser/net/chrome_url_request_context.h" #include "chrome/browser/net/predictor.h" -#include "chrome/browser/password_manager/password_store.h" #include "chrome/browser/password_manager/password_store_factory.h" #include "chrome/browser/predictors/logged_in_predictor_table.h" #include "chrome/browser/predictors/predictor_database.h" @@ -51,6 +50,7 @@ #include "chrome/browser/webdata/web_data_service_factory.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" +#include "components/password_manager/core/browser/password_store.h" #if defined(OS_CHROMEOS) #include "chromeos/attestation/attestation_constants.h" #include "chromeos/dbus/cryptohome_client.h" |