diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-05 00:29:53 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-05 00:29:53 +0000 |
commit | bf5c532d4a62b60de3ee1ca6b4dc8f998f6831d5 (patch) | |
tree | 4f30bb1072bc5573525e24454a3eb5e37a31af93 /chrome/browser/search/local_ntp_source.cc | |
parent | cf4f689f6917abc305c0960619d683b0bc00cce3 (diff) | |
download | chromium_src-bf5c532d4a62b60de3ee1ca6b4dc8f998f6831d5.zip chromium_src-bf5c532d4a62b60de3ee1ca6b4dc8f998f6831d5.tar.gz chromium_src-bf5c532d4a62b60de3ee1ca6b4dc8f998f6831d5.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
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=281403
Review URL: https://codereview.chromium.org/367023002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281455 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/search/local_ntp_source.cc')
-rw-r--r-- | chrome/browser/search/local_ntp_source.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/search/local_ntp_source.cc b/chrome/browser/search/local_ntp_source.cc index 7775716..bcda9f4 100644 --- a/chrome/browser/search/local_ntp_source.cc +++ b/chrome/browser/search/local_ntp_source.cc @@ -13,10 +13,10 @@ #include "base/values.h" #include "chrome/browser/search/instant_io_context.h" #include "chrome/browser/search/search.h" -#include "chrome/browser/search_engines/template_url_service.h" #include "chrome/browser/search_engines/template_url_service_factory.h" #include "chrome/common/url_constants.h" #include "components/search_engines/template_url_prepopulate_data.h" +#include "components/search_engines/template_url_service.h" #include "grit/browser_resources.h" #include "grit/generated_resources.h" #include "grit/theme_resources.h" |