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

Unified Diff: chrome/browser/chromeos/gdata/gdata_operations.cc

Issue 10332260: gdata: Fix URLs used for fetching documents in a particular directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/gdata/gdata_operations.cc
diff --git a/chrome/browser/chromeos/gdata/gdata_operations.cc b/chrome/browser/chromeos/gdata/gdata_operations.cc
index 9275315534342368fa55906d812b856f27071303..4a54d15e59a97213517c21d97ddfe39a8183d1c2 100644
--- a/chrome/browser/chromeos/gdata/gdata_operations.cc
+++ b/chrome/browser/chromeos/gdata/gdata_operations.cc
@@ -41,13 +41,13 @@ const char kIfMatchAllHeader[] = "If-Match: *";
const char kIfMatchHeaderFormat[] = "If-Match: %s";
// URL requesting documents list that belong to the authenticated user only
-// (handled with '/mine' part).
+// (handled with '/-/mine' part).
const char kGetDocumentListURLForAllDocuments[] =
"https://docs.google.com/feeds/default/private/full/-/mine";
// URL requesting documents list in a particular directory specified by "%s"
-// that belong to the authenticated user only (handled with '/mine' part).
+// that belong to the authenticated user only (handled with '/-/mine' part).
const char kGetDocumentListURLForDirectoryFormat[] =
- "https://docs.google.com/feeds/default/private/full/%s/contents/mine";
+ "https://docs.google.com/feeds/default/private/full/%s/contents/-/mine";
// URL requesting documents list of changes to documents collections.
const char kGetChangesListURL[] =
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698