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

Unified Diff: chrome/browser/chromeos/gdata/gdata_files.h

Issue 10825218: Simplify implementation of FindEntryByPathSync (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: base_name 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_files.h
===================================================================
--- chrome/browser/chromeos/gdata/gdata_files.h (revision 150246)
+++ chrome/browser/chromeos/gdata/gdata_files.h (working copy)
@@ -307,7 +307,7 @@
// Removes the entry from its children list and destroys the entry instance.
// TODO(satorux): Remove this. crbug.com/139649
- bool RemoveEntry(GDataEntry* entry);
+ void RemoveEntry(GDataEntry* entry);
// Takes the ownership of |entry| from its current parent. If this directory
// is already the current parent of |file|, this method effectively goes
@@ -329,7 +329,7 @@
// Removes the entry from its children without destroying the
// entry instance.
- bool RemoveChild(GDataEntry* entry);
+ void RemoveChild(GDataEntry* entry);
// Collection of children GDataEntry items.
GDataFileCollection child_files_;

Powered by Google App Engine
This is Rietveld 408576698