diff options
author | sdefresne <sdefresne@chromium.org> | 2015-03-12 11:49:12 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-12 18:50:31 +0000 |
commit | 506dd521e1f6934a997e051481da3fda2098a354 (patch) | |
tree | 5741833876ae8f92957ad0e9717f2d5fba991049 /chrome/browser/sync/glue/favicon_cache.cc | |
parent | c4622464ba3fdb5d16cf99125ea71bc6fb83d30e (diff) | |
download | chromium_src-506dd521e1f6934a997e051481da3fda2098a354.zip chromium_src-506dd521e1f6934a997e051481da3fda2098a354.tar.gz chromium_src-506dd521e1f6934a997e051481da3fda2098a354.tar.bz2 |
Componentize HistoryService, HistoryBackend and related classes
Move a bunch of files from chrome/browser/history to components/history as
they have no problematic dependency anymore (move them in a single pass as
they have circular #include).
Update DEPS, dependencies in gyp/gn files and #include. Files were moved
with tools/git/move_source_file.py and #include fixes were automated.
BUG=453790
Review URL: https://codereview.chromium.org/961873003
Cr-Commit-Position: refs/heads/master@{#320332}
Diffstat (limited to 'chrome/browser/sync/glue/favicon_cache.cc')
-rw-r--r-- | chrome/browser/sync/glue/favicon_cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/sync/glue/favicon_cache.cc b/chrome/browser/sync/glue/favicon_cache.cc index 1a331e7..506263b 100644 --- a/chrome/browser/sync/glue/favicon_cache.cc +++ b/chrome/browser/sync/glue/favicon_cache.cc @@ -8,8 +8,8 @@ #include "base/metrics/histogram.h" #include "chrome/browser/favicon/favicon_service.h" #include "chrome/browser/favicon/favicon_service_factory.h" -#include "chrome/browser/history/history_service.h" #include "chrome/browser/history/history_service_factory.h" +#include "components/history/core/browser/history_service.h" #include "components/history/core/browser/history_types.h" #include "sync/api/time.h" #include "sync/protocol/favicon_image_specifics.pb.h" |