diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-09 06:08:50 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-09 06:08:50 +0000 |
commit | bac78f9fbfa5aef4b2d453e490369d35a08eda0e (patch) | |
tree | 7dcd34e717c1d011cd831fedcdb1ab05600e661c /chrome/browser/history | |
parent | 32a0c88b75814886b4cd16393d8f074083931bcc (diff) | |
download | chromium_src-bac78f9fbfa5aef4b2d453e490369d35a08eda0e.zip chromium_src-bac78f9fbfa5aef4b2d453e490369d35a08eda0e.tar.gz chromium_src-bac78f9fbfa5aef4b2d453e490369d35a08eda0e.tar.bz2 |
Componentize HistoryMatch
HistoryMatch is placed under the history namespace and has no dependency to autocomplete.
It should be placed under components/history.
BUG=388515
TEST=build
Review URL: https://codereview.chromium.org/371283002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281971 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history')
-rw-r--r-- | chrome/browser/history/DEPS | 1 | ||||
-rw-r--r-- | chrome/browser/history/scored_history_match.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/history/DEPS b/chrome/browser/history/DEPS index 3b7427f..e15426b 100644 --- a/chrome/browser/history/DEPS +++ b/chrome/browser/history/DEPS @@ -19,7 +19,6 @@ include_rules = [ # http://crbug.com/370850 "!chrome/browser/autocomplete/autocomplete_match.h", "!chrome/browser/autocomplete/autocomplete_result.h", - "!chrome/browser/autocomplete/history_provider_util.h", "!chrome/browser/autocomplete/history_url_provider.h", "!chrome/browser/bookmarks/bookmark_model_factory.h", "!chrome/browser/browser_process.h", diff --git a/chrome/browser/history/scored_history_match.h b/chrome/browser/history/scored_history_match.h index 5a24633..2b2cf7e 100644 --- a/chrome/browser/history/scored_history_match.h +++ b/chrome/browser/history/scored_history_match.h @@ -10,9 +10,9 @@ #include <vector> #include "base/strings/string16.h" -#include "chrome/browser/autocomplete/history_provider_util.h" #include "chrome/browser/history/history_types.h" #include "chrome/browser/history/in_memory_url_index_types.h" +#include "components/history/core/browser/history_match.h" #include "testing/gtest/include/gtest/gtest_prod.h" namespace history { |