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

Unified Diff: chrome/browser/android/chrome_application.cc

Issue 1420053005: Move code in components/safe_browsing_db and chrome/browser/s_b/ under the safe_browsing namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@02_components_move
Patch Set: Remove '// namespace safe_browsing' for a small fwd decl block. Created 5 years, 1 month 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
« no previous file with comments | « chrome/app/android/chrome_main_delegate_android.cc ('k') | chrome/browser/browser_process.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « chrome/app/android/chrome_main_delegate_android.cc ('k') | chrome/browser/browser_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698