commit | 51739e1843c16705a7c945a237623bdbba728f7e | [log] [tgz] |
---|---|---|
author | hirono <[email protected]> | Mon Sep 14 06:08:14 2015 |
committer | Commit bot <[email protected]> | Mon Sep 14 06:09:25 2015 |
tree | cb1f0b88580c063ea0e66160412aa83c2a9fb4b5 | |
parent | d20e90086331bd4780c2ee842794d7f8cb42e0df [diff] [blame] |
Files.app: Add NO_SERVER_SPACE sync error message. BUG=339700 TEST=None Review URL: https://codereview.chromium.org/1336503002 Cr-Commit-Position: refs/heads/master@{#348572}
diff --git a/components/drive/sync_client.cc b/components/drive/sync_client.cc index e11a6ce..0b27928b 100644 --- a/components/drive/sync_client.cc +++ b/components/drive/sync_client.cc
@@ -442,6 +442,10 @@ operation_delegate_->OnDriveSyncError( file_system::DRIVE_SYNC_ERROR_SERVICE_UNAVAILABLE, local_id); break; + case FILE_ERROR_NO_SERVER_SPACE: + operation_delegate_->OnDriveSyncError( + file_system::DRIVE_SYNC_ERROR_NO_SERVER_SPACE, local_id); + break; default: operation_delegate_->OnDriveSyncError( file_system::DRIVE_SYNC_ERROR_MISC, local_id);