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

Unified Diff: chrome/common/extensions/extension_constants.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 | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/net/url_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension_constants.cc
diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc
index 7ef5d27785e0c39a8d1d751f1b3cc1e05a67338a..948966b84e1ec0f67a0096dd9a1bc7fe385b1b60 100644
--- a/chrome/common/extensions/extension_constants.cc
+++ b/chrome/common/extensions/extension_constants.cc
@@ -10,7 +10,7 @@
#include "base/command_line.h"
#include "base/string_util.h"
#include "chrome/common/chrome_switches.h"
-#include "chrome/common/net/url_util.h"
+#include "net/base/url_util.h"
namespace extension_urls {
@@ -38,8 +38,8 @@ GURL GetWebstoreIntentQueryURL(const std::string& action,
GURL url(std::string(kGalleryBrowsePrefix) + "/");
url = url.Resolve(kIntentsCategoryPath);
- url = chrome_common_net::AppendQueryParameter(url, "_wi", action);
- url = chrome_common_net::AppendQueryParameter(url, "_mt", type);
+ url = net::AppendQueryParameter(url, "_wi", action);
+ url = net::AppendQueryParameter(url, "_mt", type);
return url;
}
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/net/url_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698