Index: chrome/browser/google_apis/gdata_wapi_service.cc |
diff --git a/chrome/browser/google_apis/gdata_wapi_service.cc b/chrome/browser/google_apis/gdata_wapi_service.cc |
index b2263a9dfda4344060537e0a6d9d61bc13486bb6..d318e25b80d2b9822ccaf961b926944e8f36b29f 100644 |
--- a/chrome/browser/google_apis/gdata_wapi_service.cc |
+++ b/chrome/browser/google_apis/gdata_wapi_service.cc |
@@ -18,8 +18,8 @@ |
#include "chrome/browser/google_apis/gdata_wapi_url_generator.h" |
#include "chrome/browser/google_apis/operation_runner.h" |
#include "chrome/browser/google_apis/time_util.h" |
-#include "chrome/common/net/url_util.h" |
#include "content/public/browser/browser_thread.h" |
+#include "net/base/url_util.h" |
using content::BrowserThread; |
@@ -337,9 +337,9 @@ void GDataWapiService::DownloadHostedDocument( |
DownloadFile( |
virtual_path, |
local_cache_path, |
- chrome_common_net::AppendQueryParameter(edit_url, |
- "exportFormat", |
- GetExportFormatParam(format)), |
+ net::AppendQueryParameter(edit_url, |
+ "exportFormat", |
+ GetExportFormatParam(format)), |
callback, |
GetContentCallback()); |
} |