diff options
author | caitkp@chromium.org <caitkp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-03 21:24:08 +0000 |
---|---|---|
committer | caitkp@chromium.org <caitkp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-03 21:24:08 +0000 |
commit | 06d5484194e4c725e0a4cfe81f60afe48e1297f3 (patch) | |
tree | 76be643d7a47b2b8da4c080e9973b18d538dab81 /chrome_frame/test | |
parent | 5a5f3c86ecd6421d48f0c9cafd820d170feedd6c (diff) | |
download | chromium_src-06d5484194e4c725e0a4cfe81f60afe48e1297f3.zip chromium_src-06d5484194e4c725e0a4cfe81f60afe48e1297f3.tar.gz chromium_src-06d5484194e4c725e0a4cfe81f60afe48e1297f3.tar.bz2 |
Move c/b/webdata/code which does not depend on chrome/ to components/webdata/
Specifically:
Moving to components/webdata/autofill:
c/b/api/webdata/autofill_web_data.h
c/b/webdata/autofill_change.(cc|h)
c/b/webdata/autofill_entry.(cc|h)
c/b/webdata/autofill_table.(cc|h)
c/b/webdata/autofill_web_data_service.(cc|h)
moving to components/webdata/common:
c/b/api/webdata/web_data_service_base
c/b/api/webdata/web_data_service_consumer
c/b/api/webdata/web_data_results
c/b/webdata/web_data_request_manager
c/b/webdata/web_data_service_base
c/b/webdata/web_data_service_test_util
c/b/webdata/web_database
c/b/webdata/web_database_service
c/b/webdata/web_database_table
c/b/webdata/webdata_constants
No change in how Webdata is built (it is still part of chrome_browser).
All source files were moved using //tools/git/move_source_file.py,
which updates includes of moved files, sorts include order, and
updates header guards.
The only manual bits of this change were:
- Update .gypi files
- Update DEPS files
TBR=ben@chromium.org
TEST=compiles!
BUG=181277
Review URL: https://chromiumcodereview.appspot.com/13392014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192161 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/test')
-rw-r--r-- | chrome_frame/test/delete_chrome_history_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome_frame/test/delete_chrome_history_test.cc b/chrome_frame/test/delete_chrome_history_test.cc index 56b449a..6a47ca2 100644 --- a/chrome_frame/test/delete_chrome_history_test.cc +++ b/chrome_frame/test/delete_chrome_history_test.cc @@ -5,12 +5,12 @@ #include <string> #include "base/rand_util.h" -#include "chrome/browser/webdata/autofill_table.h" -#include "chrome/browser/webdata/web_database.h" -#include "chrome/browser/webdata/webdata_constants.h" #include "chrome/common/url_constants.h" #include "chrome_frame/test/mock_ie_event_sink_actions.h" #include "chrome_frame/test/mock_ie_event_sink_test.h" +#include "components/webdata/autofill/autofill_table.h" +#include "components/webdata/common/web_database.h" +#include "components/webdata/common/webdata_constants.h" using testing::_; |