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

Unified Diff: chrome/browser/ui/webui/chromeos/drive_internals_ui.cc

Issue 10836137: gdata: Remove hide_hosted_documents from ReadDirectoryCallback (Closed) Base URL: svn://svn.chromium.org/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/ui/webui/chromeos/drive_internals_ui.cc
diff --git a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
index 1bc509c8b3a64baa2dd0c9d3c4154c92d927a222..aaf74bfc2b156c814ca22f75c34f762a0dd8a3a8 100644
--- a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
@@ -170,7 +170,6 @@ class DriveInternalsWebUIHandler : public content::WebUIMessageHandler {
// Called when ReadDirectoryByPath() is complete.
void OnReadDirectoryByPath(const FilePath& parent_path,
gdata::GDataFileError error,
- bool hide_hosted_documents,
scoped_ptr<gdata::GDataEntryProtoVector> entries);
// Called when GetResourceIdsOfAllFilesOnUIThread() is complete.
@@ -263,7 +262,6 @@ void DriveInternalsWebUIHandler::OnGetGCacheContents(
void DriveInternalsWebUIHandler::OnReadDirectoryByPath(
const FilePath& parent_path,
gdata::GDataFileError error,
- bool hide_hosted_documents,
scoped_ptr<gdata::GDataEntryProtoVector> entries) {
--num_pending_reads_;
if (error == gdata::GDATA_FILE_OK) {

Powered by Google App Engine
This is Rietveld 408576698