| 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 fa50cc857adc8a7fdfe78b619b0a2b0b09f81066..d02b64eccbaf4c2c102beb38778d0cd848762a94 100644
|
| --- a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
|
| @@ -180,7 +180,7 @@ class DriveInternalsWebUIHandler : public content::WebUIMessageHandler {
|
|
|
| // Called when ReadDirectoryByPath() is complete.
|
| void OnReadDirectoryByPath(const FilePath& parent_path,
|
| - gdata::GDataFileError error,
|
| + gdata::DriveFileError error,
|
| bool hide_hosted_documents,
|
| scoped_ptr<gdata::DriveEntryProtoVector> entries);
|
|
|
| @@ -291,11 +291,11 @@ void DriveInternalsWebUIHandler::OnGetGCacheContents(
|
|
|
| void DriveInternalsWebUIHandler::OnReadDirectoryByPath(
|
| const FilePath& parent_path,
|
| - gdata::GDataFileError error,
|
| + gdata::DriveFileError error,
|
| bool hide_hosted_documents,
|
| scoped_ptr<gdata::DriveEntryProtoVector> entries) {
|
| --num_pending_reads_;
|
| - if (error == gdata::GDATA_FILE_OK) {
|
| + if (error == gdata::DRIVE_FILE_OK) {
|
| DCHECK(entries.get());
|
|
|
| std::string file_system_as_text;
|
|
|