Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1296)

Unified Diff: chrome/browser/favicon/chrome_favicon_client.cc

Issue 839193002: Move ServiceAccessType into //components/keyed_service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation on android Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/favicon/chrome_favicon_client.cc
diff --git a/chrome/browser/favicon/chrome_favicon_client.cc b/chrome/browser/favicon/chrome_favicon_client.cc
index 68bc7d9c596112e30c5ef045185a7b0947e3b445..ca34ae37ceb5c7ef93441e276fb6c8c32d21fe15 100644
--- a/chrome/browser/favicon/chrome_favicon_client.cc
+++ b/chrome/browser/favicon/chrome_favicon_client.cc
@@ -17,8 +17,8 @@ ChromeFaviconClient::~ChromeFaviconClient() {
}
FaviconService* ChromeFaviconClient::GetFaviconService() {
- return FaviconServiceFactory::GetForProfile(profile_,
- Profile::EXPLICIT_ACCESS);
+ return FaviconServiceFactory::GetForProfile(
+ profile_, ServiceAccessType::EXPLICIT_ACCESS);
}
bool ChromeFaviconClient::IsBookmarked(const GURL& url) {

Powered by Google App Engine
This is Rietveld 408576698