diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-04 13:45:21 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-04 13:45:21 +0000 |
commit | 098e6098d233277b168cd367bc6012ba1722d108 (patch) | |
tree | fd5f157a10627ea4b45640cc2901a5230305caa4 /chrome/browser/browsing_data | |
parent | bea1db328892155789e584c87e8b2cb043b039af (diff) | |
download | chromium_src-098e6098d233277b168cd367bc6012ba1722d108.zip chromium_src-098e6098d233277b168cd367bc6012ba1722d108.tar.gz chromium_src-098e6098d233277b168cd367bc6012ba1722d108.tar.bz2 |
Componentize TemplateURLService
Move TemplateURLService, SearchHostToURLsMap, util.cc from chrome/browser/search_engines to components/search_engines
Move KeywordTable and KeywordWeDataService from chrome/browser/webdata to components/search_engines
Fix DEPS, OWNERS and gyp.
Replace HistoryDatabase in keyword_table.cc with URLDatabase.
BUG=386367
TEST=build and checkdeps
R=blundell@chromium.org, jochen@chromium.org, pkasting@chromium.org
TBR=atwilson@chromium.org as an owner of sync, erikwright@chromium.org as an owner of sql
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=281350
Review URL: https://codereview.chromium.org/367023002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281403 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browsing_data')
-rw-r--r-- | chrome/browser/browsing_data/browsing_data_remover.cc | 6 | ||||
-rw-r--r-- | chrome/browser/browsing_data/browsing_data_remover.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/browsing_data/browsing_data_remover.cc b/chrome/browser/browsing_data/browsing_data_remover.cc index 007cb92..d9f4802 100644 --- a/chrome/browser/browsing_data/browsing_data_remover.cc +++ b/chrome/browser/browsing_data/browsing_data_remover.cc @@ -37,7 +37,6 @@ #include "chrome/browser/profiles/profile.h" #include "chrome/browser/renderer_host/web_cache_manager.h" #include "chrome/browser/safe_browsing/safe_browsing_service.h" -#include "chrome/browser/search_engines/template_url_service.h" #include "chrome/browser/search_engines/template_url_service_factory.h" #include "chrome/browser/sessions/session_service.h" #include "chrome/browser/sessions/session_service_factory.h" @@ -46,12 +45,13 @@ #include "chrome/browser/webdata/web_data_service_factory.h" #include "chrome/common/pref_names.h" #include "chrome/common/url_constants.h" -#include "components/domain_reliability/service.h" -#include "components/password_manager/core/browser/password_store.h" #include "components/autofill/core/browser/personal_data_manager.h" #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" +#include "components/domain_reliability/service.h" #include "components/nacl/browser/nacl_browser.h" #include "components/nacl/browser/pnacl_host.h" +#include "components/password_manager/core/browser/password_store.h" +#include "components/search_engines/template_url_service.h" #include "content/public/browser/browser_thread.h" #include "content/public/browser/dom_storage_context.h" #include "content/public/browser/download_manager.h" diff --git a/chrome/browser/browsing_data/browsing_data_remover.h b/chrome/browser/browsing_data/browsing_data_remover.h index 66de0011..01b46f2 100644 --- a/chrome/browser/browsing_data/browsing_data_remover.h +++ b/chrome/browser/browsing_data/browsing_data_remover.h @@ -16,7 +16,7 @@ #include "base/task/cancelable_task_tracker.h" #include "base/time/time.h" #include "chrome/browser/pepper_flash_settings_manager.h" -#include "chrome/browser/search_engines/template_url_service.h" +#include "components/search_engines/template_url_service.h" #if defined(OS_CHROMEOS) #include "chromeos/dbus/dbus_method_call_status.h" #endif |