Index: chrome/browser/android/chrome_application.cc |
diff --git a/chrome/browser/android/chrome_application.cc b/chrome/browser/android/chrome_application.cc |
index 241bdd29574f469feab69b1e134d3805e09bf87e..1ae2f43213423b83d323b99c0ac38d9fdf68bded 100644 |
--- a/chrome/browser/android/chrome_application.cc |
+++ b/chrome/browser/android/chrome_application.cc |
@@ -71,10 +71,11 @@ void RemoveSessionCookiesForProfile(Profile* profile) { |
make_scoped_refptr(profile->GetRequestContext()))); |
} |
-void ChangeAppStatusOnIOThread(SafeBrowsingService* sb_service, |
+void ChangeAppStatusOnIOThread(safe_browsing::SafeBrowsingService* sb_service, |
jboolean foreground) { |
DCHECK_CURRENTLY_ON(content::BrowserThread::IO); |
- SafeBrowsingProtocolManager* proto_manager = sb_service->protocol_manager(); |
+ safe_browsing::SafeBrowsingProtocolManager* proto_manager = |
+ sb_service->protocol_manager(); |
if (proto_manager) |
proto_manager->SetAppInForeground(foreground); |
} |