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

Unified Diff: trunk/src/chrome/browser/chromeos/file_system_provider/request_value.h

Issue 342003004: Revert 277929 "[fsp] Cleanup handling errors for operation reque..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 6 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: trunk/src/chrome/browser/chromeos/file_system_provider/request_value.h
===================================================================
--- trunk/src/chrome/browser/chromeos/file_system_provider/request_value.h (revision 278185)
+++ trunk/src/chrome/browser/chromeos/file_system_provider/request_value.h (working copy)
@@ -40,10 +40,6 @@
scoped_ptr<extensions::api::file_system_provider_internal::
ReadFileRequestedSuccess::Params> params);
- static scoped_ptr<RequestValue> CreateForOperationError(
- scoped_ptr<extensions::api::file_system_provider_internal::
- OperationRequestedError::Params> params);
-
static scoped_ptr<RequestValue> CreateForTesting(const std::string& params);
const extensions::api::file_system_provider_internal::
@@ -70,12 +66,6 @@
return read_file_success_params_.get();
}
- const extensions::api::file_system_provider_internal::
- OperationRequestedError::Params*
- operation_error_params() const {
- return operation_error_params_.get();
- }
-
const std::string* testing_params() const { return testing_params_.get(); }
private:
@@ -89,8 +79,6 @@
read_directory_success_params_;
scoped_ptr<extensions::api::file_system_provider_internal::
ReadFileRequestedSuccess::Params> read_file_success_params_;
- scoped_ptr<extensions::api::file_system_provider_internal::
- OperationRequestedError::Params> operation_error_params_;
scoped_ptr<std::string> testing_params_;
DISALLOW_COPY_AND_ASSIGN(RequestValue);

Powered by Google App Engine
This is Rietveld 408576698