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

Unified Diff: chrome/browser/chromeos/extensions/file_system_provider/provider_function.cc

Issue 440653003: [fsp] Add support for aborting running operations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleaned up. Created 6 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/extensions/file_system_provider/provider_function.cc
diff --git a/chrome/browser/chromeos/extensions/file_system_provider/provider_function.cc b/chrome/browser/chromeos/extensions/file_system_provider/provider_function.cc
index 0061ee186223aaed8434cbc3804c55a3b5a2bbc5..134787bd142e86b97bde75744d7549dd0ab36e06 100644
--- a/chrome/browser/chromeos/extensions/file_system_provider/provider_function.cc
+++ b/chrome/browser/chromeos/extensions/file_system_provider/provider_function.cc
@@ -62,8 +62,6 @@ base::File::Error ProviderErrorToFileError(
return base::File::FILE_ERROR_INVALID_OPERATION;
case api::file_system_provider::PROVIDER_ERROR_SECURITY:
return base::File::FILE_ERROR_SECURITY;
- case api::file_system_provider::PROVIDER_ERROR_ABORT:
- return base::File::FILE_ERROR_ABORT;
case api::file_system_provider::PROVIDER_ERROR_NOT_A_FILE:
return base::File::FILE_ERROR_NOT_A_FILE;
case api::file_system_provider::PROVIDER_ERROR_NOT_EMPTY:

Powered by Google App Engine
This is Rietveld 408576698