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

Unified Diff: chrome/browser/autofill/wallet/wallet_service_url.cc

Issue 12069004: google_apis: Move AppendQueryParameter() etc. from common/net/url_util.h to net/base/url_util.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/network_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/wallet/wallet_service_url.cc
diff --git a/chrome/browser/autofill/wallet/wallet_service_url.cc b/chrome/browser/autofill/wallet/wallet_service_url.cc
index 890cca086e9be779b2689e8e78f2dc2013bda4d3..1dd1afbf0f7be731d8f59f76879a41331b5771a5 100644
--- a/chrome/browser/autofill/wallet/wallet_service_url.cc
+++ b/chrome/browser/autofill/wallet/wallet_service_url.cc
@@ -8,9 +8,9 @@
#include "base/command_line.h"
#include "chrome/common/chrome_switches.h"
-#include "chrome/common/net/url_util.h"
#include "google_apis/gaia/gaia_urls.h"
#include "googleurl/src/gurl.h"
+#include "net/base/url_util.h"
namespace {
@@ -82,12 +82,11 @@ GURL GetEscrowUrl() {
GURL GetSignInUrl() {
GURL url(GaiaUrls::GetInstance()->service_login_url());
- url = chrome_common_net::AppendQueryParameter(url, "service", "sierra");
- url = chrome_common_net::AppendQueryParameter(url, "btmpl", "popup");
- url = chrome_common_net::AppendQueryParameter(
- url,
- "continue",
- GetSignInContinueUrl().spec());
+ url = net::AppendQueryParameter(url, "service", "sierra");
+ url = net::AppendQueryParameter(url, "btmpl", "popup");
+ url = net::AppendQueryParameter(url,
+ "continue",
+ GetSignInContinueUrl().spec());
return url;
}
« no previous file with comments | « no previous file | chrome/browser/chromeos/cros/network_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698