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

Unified Diff: chrome/browser/google_apis/gdata_contacts_operations.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
Index: chrome/browser/google_apis/gdata_contacts_operations.cc
diff --git a/chrome/browser/google_apis/gdata_contacts_operations.cc b/chrome/browser/google_apis/gdata_contacts_operations.cc
index 517c4ad87191ba57584e3a6edf85b1c3c201c4cc..42dc6946e191555b8961a20e93c8aad568913783 100644
--- a/chrome/browser/google_apis/gdata_contacts_operations.cc
+++ b/chrome/browser/google_apis/gdata_contacts_operations.cc
@@ -5,8 +5,8 @@
#include "chrome/browser/google_apis/gdata_contacts_operations.h"
#include "chrome/browser/google_apis/time_util.h"
-#include "chrome/common/net/url_util.h"
#include "googleurl/src/gurl.h"
+#include "net/base/url_util.h"
namespace google_apis {
@@ -73,13 +73,12 @@ GURL GetContactsOperation::GetURL() const {
GURL url(kGetContactsURL);
if (!group_id_.empty()) {
- url = chrome_common_net::AppendQueryParameter(
- url, kGetContactsGroupParam, group_id_);
+ url = net::AppendQueryParameter(url, kGetContactsGroupParam, group_id_);
}
if (!min_update_time_.is_null()) {
std::string time_rfc3339 = util::FormatTimeAsString(min_update_time_);
- url = chrome_common_net::AppendQueryParameter(
- url, kGetContactsUpdatedMinParam, time_rfc3339);
+ url = net::AppendQueryParameter(
+ url, kGetContactsUpdatedMinParam, time_rfc3339);
}
return url;
}
« no previous file with comments | « chrome/browser/google_apis/drive_api_url_generator.cc ('k') | chrome/browser/google_apis/gdata_wapi_operations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698