| Index: chrome/browser/android/favicon_helper.cc
|
| diff --git a/chrome/browser/android/favicon_helper.cc b/chrome/browser/android/favicon_helper.cc
|
| index 08c3dcfe1b1d9cd187634cc519277be016857465..50b21d64da5e9b09d25aa72f2872326a1a9c27d8 100644
|
| --- a/chrome/browser/android/favicon_helper.cc
|
| +++ b/chrome/browser/android/favicon_helper.cc
|
| @@ -116,7 +116,7 @@ jboolean FaviconHelper::GetLocalFaviconImageForURL(
|
| return false;
|
|
|
| FaviconService* favicon_service = FaviconServiceFactory::GetForProfile(
|
| - profile, Profile::EXPLICIT_ACCESS);
|
| + profile, ServiceAccessType::EXPLICIT_ACCESS);
|
| DCHECK(favicon_service);
|
| if (!favicon_service)
|
| return false;
|
| @@ -152,7 +152,7 @@ void FaviconHelper::GetLargestRawFaviconForUrl(
|
| return;
|
|
|
| FaviconService* favicon_service = FaviconServiceFactory::GetForProfile(
|
| - profile, Profile::EXPLICIT_ACCESS);
|
| + profile, ServiceAccessType::EXPLICIT_ACCESS);
|
| DCHECK(favicon_service);
|
| if (!favicon_service)
|
| return;
|
|
|