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

Unified Diff: chrome/browser/services/gcm/gcm_desktop_utils.cc

Issue 816403003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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/services/gcm/gcm_desktop_utils.cc
diff --git a/chrome/browser/services/gcm/gcm_desktop_utils.cc b/chrome/browser/services/gcm/gcm_desktop_utils.cc
index 83ee33cb15257fd44579b3d635b5fb373845f90f..a3259c212930c2ef38fed209fe3a6610552039fb 100644
--- a/chrome/browser/services/gcm/gcm_desktop_utils.cc
+++ b/chrome/browser/services/gcm/gcm_desktop_utils.cc
@@ -75,8 +75,8 @@ GCMClient::ChromeBuildInfo GetChromeBuildInfo() {
}
std::string GetChannelStatusRequestUrl() {
- GURL sync_url(
- ProfileSyncService::GetSyncServiceURL(*CommandLine::ForCurrentProcess()));
+ GURL sync_url(ProfileSyncService::GetSyncServiceURL(
+ *base::CommandLine::ForCurrentProcess()));
return sync_url.spec() + kChannelStatusRelativePath;
}

Powered by Google App Engine
This is Rietveld 408576698