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); |