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

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: 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
Index: chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.cc
===================================================================
--- chrome/browser/chromeos/gdata/gdata_wapi_feed_processor.cc (revision 150901)
+++ 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;

Powered by Google App Engine
This is Rietveld 408576698