diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 11:44:33 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-20 11:44:33 +0000 |
commit | 526a16b1a62d0e11bc7da18de694143c61613e71 (patch) | |
tree | 56082f469a0878b4c1d06f91d3e4b69b5b94aca0 /components/webdata/common | |
parent | db9859e5e085b0ff40bffec8aa49ca55747a1729 (diff) | |
download | chromium_src-526a16b1a62d0e11bc7da18de694143c61613e71.zip chromium_src-526a16b1a62d0e11bc7da18de694143c61613e71.tar.gz chromium_src-526a16b1a62d0e11bc7da18de694143c61613e71.tar.bz2 |
In components/autofill, move browser/ to core/browser/
This change completes the large-scale restructuring of components/autofill into
its structure of a layered component. This CL additionally imposes the correct
DEPS restrictions on autofill/components/core/browser/, with temporary
allowances for the current violating includes.
TBR=joi,benm,thakis,erikwright
BUG=247015
Review URL: https://chromiumcodereview.appspot.com/17392006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207403 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/webdata/common')
-rw-r--r-- | components/webdata/common/web_data_service_test_util.cc | 2 | ||||
-rw-r--r-- | components/webdata/common/web_database_migration_unittest.cc | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/components/webdata/common/web_data_service_test_util.cc b/components/webdata/common/web_data_service_test_util.cc index 2720721..b1f3429 100644 --- a/components/webdata/common/web_data_service_test_util.cc +++ b/components/webdata/common/web_data_service_test_util.cc @@ -4,7 +4,7 @@ #include "components/webdata/common/web_data_service_test_util.h" -#include "components/autofill/browser/webdata/autofill_webdata_service.h" +#include "components/autofill/core/browser/webdata/autofill_webdata_service.h" using autofill::AutofillWebDataService; diff --git a/components/webdata/common/web_database_migration_unittest.cc b/components/webdata/common/web_database_migration_unittest.cc index 0181f2e..d93fce5 100644 --- a/components/webdata/common/web_database_migration_unittest.cc +++ b/components/webdata/common/web_database_migration_unittest.cc @@ -20,13 +20,13 @@ #include "chrome/browser/webdata/web_apps_table.h" #include "chrome/browser/webdata/web_intents_table.h" #include "chrome/test/base/ui_test_utils.h" -#include "components/autofill/browser/autofill_country.h" -#include "components/autofill/browser/autofill_profile.h" -#include "components/autofill/browser/autofill_type.h" -#include "components/autofill/browser/credit_card.h" -#include "components/autofill/browser/webdata/autofill_change.h" -#include "components/autofill/browser/webdata/autofill_entry.h" -#include "components/autofill/browser/webdata/autofill_table.h" +#include "components/autofill/core/browser/autofill_country.h" +#include "components/autofill/core/browser/autofill_profile.h" +#include "components/autofill/core/browser/autofill_type.h" +#include "components/autofill/core/browser/credit_card.h" +#include "components/autofill/core/browser/webdata/autofill_change.h" +#include "components/autofill/core/browser/webdata/autofill_entry.h" +#include "components/autofill/core/browser/webdata/autofill_table.h" #include "components/webdata/common/web_database.h" #include "sql/statement.h" #include "testing/gtest/include/gtest/gtest.h" |