| 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 0a9e284b96aad51ee720215c2cd572c78eddf201..ef40f2f2b428aed29fa52706d89d6f48d981ff8b 100644
|
| --- a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
|
| @@ -253,11 +253,11 @@ class DriveInternalsWebUIHandler : public content::WebUIMessageHandler {
|
|
|
| // Callback for DriveFilesystem::GetMetadata for local update.
|
| void OnGetFilesystemMetadataForLocal(
|
| - const drive::DriveFileSystemMetadata& metadata);
|
| + const drive::FileSystemMetadata& metadata);
|
|
|
| // Callback for DriveFilesystem::GetMetadata for local update.
|
| void OnGetFilesystemMetadataForDeltaUpdate(
|
| - const drive::DriveFileSystemMetadata& metadata);
|
| + const drive::FileSystemMetadata& metadata);
|
|
|
| // Called when the page requests periodic update.
|
| void OnPeriodicUpdate(const base::ListValue* args);
|
| @@ -473,7 +473,7 @@ void DriveInternalsWebUIHandler::UpdateLocalMetadataSection(
|
| }
|
|
|
| void DriveInternalsWebUIHandler::OnGetFilesystemMetadataForLocal(
|
| - const drive::DriveFileSystemMetadata& metadata) {
|
| + const drive::FileSystemMetadata& metadata) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
| base::DictionaryValue local_metadata;
|
| @@ -512,7 +512,7 @@ void DriveInternalsWebUIHandler::UpdateDeltaUpdateStatusSection() {
|
| }
|
|
|
| void DriveInternalsWebUIHandler::OnGetFilesystemMetadataForDeltaUpdate(
|
| - const drive::DriveFileSystemMetadata& metadata) {
|
| + const drive::FileSystemMetadata& metadata) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| Profile* profile = Profile::FromWebUI(web_ui());
|
| google_apis::DriveNotificationManager* drive_notification_manager =
|
|
|