diff options
author | sdefresne <sdefresne@chromium.org> | 2015-03-30 10:17:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-30 17:18:00 +0000 |
commit | 494aec68691f10626b226892396d442503dd9af7 (patch) | |
tree | 3cf53649ec6e4c708d419928ca798b5bc6641dee /chrome/test | |
parent | 24c5e71f6cc5f1033485d83bd7d767c45071cf16 (diff) | |
download | chromium_src-494aec68691f10626b226892396d442503dd9af7.zip chromium_src-494aec68691f10626b226892396d442503dd9af7.tar.gz chromium_src-494aec68691f10626b226892396d442503dd9af7.tar.bz2 |
Move //components/favicon code into the favicon namespace
Move all classes defined in //components/favicon into the favicon namespace
and update all client code forward-declaration and usage.
Rename FaviconTabHelperObserver to FaviconDriverObserver as FaviconDriver is
the name of the base interface (and iOS wants to use that observer but will
not be able to use FaviconTabHelper).
BUG=359513
Review URL: https://codereview.chromium.org/1028503004
Cr-Commit-Position: refs/heads/master@{#322799}
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/base/testing_profile.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc index 22b166d..31652ec 100644 --- a/chrome/test/base/testing_profile.cc +++ b/chrome/test/base/testing_profile.cc @@ -224,9 +224,10 @@ KeyedService* BuildFallbackIconService(content::BrowserContext* context) { KeyedService* BuildFaviconService(content::BrowserContext* context) { Profile* profile = Profile::FromBrowserContext(context); - return new FaviconService(ChromeFaviconClientFactory::GetForProfile(profile), - HistoryServiceFactory::GetForProfile( - profile, ServiceAccessType::EXPLICIT_ACCESS)); + return new favicon::FaviconService( + ChromeFaviconClientFactory::GetForProfile(profile), + HistoryServiceFactory::GetForProfile(profile, + ServiceAccessType::EXPLICIT_ACCESS)); } KeyedService* BuildHistoryService(content::BrowserContext* context) { |