OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REQUEST_VALUE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REQUEST_VALUE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REQUEST_VALUE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REQUEST_VALUE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 GetMetadataRequestedSuccess::Params> params); | 33 GetMetadataRequestedSuccess::Params> params); |
34 | 34 |
35 static scoped_ptr<RequestValue> CreateForReadDirectorySuccess( | 35 static scoped_ptr<RequestValue> CreateForReadDirectorySuccess( |
36 scoped_ptr<extensions::api::file_system_provider_internal:: | 36 scoped_ptr<extensions::api::file_system_provider_internal:: |
37 ReadDirectoryRequestedSuccess::Params> params); | 37 ReadDirectoryRequestedSuccess::Params> params); |
38 | 38 |
39 static scoped_ptr<RequestValue> CreateForReadFileSuccess( | 39 static scoped_ptr<RequestValue> CreateForReadFileSuccess( |
40 scoped_ptr<extensions::api::file_system_provider_internal:: | 40 scoped_ptr<extensions::api::file_system_provider_internal:: |
41 ReadFileRequestedSuccess::Params> params); | 41 ReadFileRequestedSuccess::Params> params); |
42 | 42 |
43 static scoped_ptr<RequestValue> CreateForOperationError( | |
44 scoped_ptr<extensions::api::file_system_provider_internal:: | |
45 OperationRequestedError::Params> params); | |
46 | |
47 static scoped_ptr<RequestValue> CreateForTesting(const std::string& params); | 43 static scoped_ptr<RequestValue> CreateForTesting(const std::string& params); |
48 | 44 |
49 const extensions::api::file_system_provider_internal:: | 45 const extensions::api::file_system_provider_internal:: |
50 UnmountRequestedSuccess::Params* | 46 UnmountRequestedSuccess::Params* |
51 unmount_success_params() const { | 47 unmount_success_params() const { |
52 return unmount_success_params_.get(); | 48 return unmount_success_params_.get(); |
53 } | 49 } |
54 | 50 |
55 const extensions::api::file_system_provider_internal:: | 51 const extensions::api::file_system_provider_internal:: |
56 GetMetadataRequestedSuccess::Params* | 52 GetMetadataRequestedSuccess::Params* |
57 get_metadata_success_params() const { | 53 get_metadata_success_params() const { |
58 return get_metadata_success_params_.get(); | 54 return get_metadata_success_params_.get(); |
59 } | 55 } |
60 | 56 |
61 const extensions::api::file_system_provider_internal:: | 57 const extensions::api::file_system_provider_internal:: |
62 ReadDirectoryRequestedSuccess::Params* | 58 ReadDirectoryRequestedSuccess::Params* |
63 read_directory_success_params() const { | 59 read_directory_success_params() const { |
64 return read_directory_success_params_.get(); | 60 return read_directory_success_params_.get(); |
65 } | 61 } |
66 | 62 |
67 const extensions::api::file_system_provider_internal:: | 63 const extensions::api::file_system_provider_internal:: |
68 ReadFileRequestedSuccess::Params* | 64 ReadFileRequestedSuccess::Params* |
69 read_file_success_params() const { | 65 read_file_success_params() const { |
70 return read_file_success_params_.get(); | 66 return read_file_success_params_.get(); |
71 } | 67 } |
72 | 68 |
73 const extensions::api::file_system_provider_internal:: | |
74 OperationRequestedError::Params* | |
75 operation_error_params() const { | |
76 return operation_error_params_.get(); | |
77 } | |
78 | |
79 const std::string* testing_params() const { return testing_params_.get(); } | 69 const std::string* testing_params() const { return testing_params_.get(); } |
80 | 70 |
81 private: | 71 private: |
82 scoped_ptr<extensions::api::file_system_provider_internal:: | 72 scoped_ptr<extensions::api::file_system_provider_internal:: |
83 UnmountRequestedSuccess::Params> unmount_success_params_; | 73 UnmountRequestedSuccess::Params> unmount_success_params_; |
84 scoped_ptr<extensions::api::file_system_provider_internal:: | 74 scoped_ptr<extensions::api::file_system_provider_internal:: |
85 GetMetadataRequestedSuccess::Params> | 75 GetMetadataRequestedSuccess::Params> |
86 get_metadata_success_params_; | 76 get_metadata_success_params_; |
87 scoped_ptr<extensions::api::file_system_provider_internal:: | 77 scoped_ptr<extensions::api::file_system_provider_internal:: |
88 ReadDirectoryRequestedSuccess::Params> | 78 ReadDirectoryRequestedSuccess::Params> |
89 read_directory_success_params_; | 79 read_directory_success_params_; |
90 scoped_ptr<extensions::api::file_system_provider_internal:: | 80 scoped_ptr<extensions::api::file_system_provider_internal:: |
91 ReadFileRequestedSuccess::Params> read_file_success_params_; | 81 ReadFileRequestedSuccess::Params> read_file_success_params_; |
92 scoped_ptr<extensions::api::file_system_provider_internal:: | |
93 OperationRequestedError::Params> operation_error_params_; | |
94 scoped_ptr<std::string> testing_params_; | 82 scoped_ptr<std::string> testing_params_; |
95 | 83 |
96 DISALLOW_COPY_AND_ASSIGN(RequestValue); | 84 DISALLOW_COPY_AND_ASSIGN(RequestValue); |
97 }; | 85 }; |
98 | 86 |
99 } // namespace file_system_provider | 87 } // namespace file_system_provider |
100 } // namespace chromeos | 88 } // namespace chromeos |
101 | 89 |
102 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REQUEST_VALUE_H_ | 90 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REQUEST_VALUE_H_ |
OLD | NEW |