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

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

Issue 10854083: Remove parent* arg from GDataEntry ctor. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 8 years, 4 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/browser/chromeos/gdata/gdata_files_unittest.cc ('k') | 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_wapi_feed_processor.cc
===================================================================
--- chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.cc (revision 151007)
+++ chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.cc (working copy)
@@ -285,8 +285,7 @@
feed->entries().begin();
iter != feed->entries().end(); ++iter) {
DocumentEntry* doc = *iter;
- GDataEntry* entry = GDataEntry::FromDocumentEntry(
- NULL, doc, directory_service_);
+ GDataEntry* entry = directory_service_->FromDocumentEntry(doc);
// Some document entries don't map into files (i.e. sites).
if (!entry)
continue;
« no previous file with comments | « chrome/browser/chromeos/gdata/gdata_files_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698