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

Side by Side Diff: chrome/browser/chromeos/file_system_provider/request_value.h

Issue 258783006: [fsp] Add the getMetadata operation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed a lot. Created 6 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 10 matching lines...) Expand all
21 // Creates an empty value. Use static methods to create a value holding a 21 // Creates an empty value. Use static methods to create a value holding a
22 // proper content. 22 // proper content.
23 RequestValue(); 23 RequestValue();
24 24
25 virtual ~RequestValue(); 25 virtual ~RequestValue();
26 26
27 static scoped_ptr<RequestValue> CreateForUnmountSuccess( 27 static scoped_ptr<RequestValue> CreateForUnmountSuccess(
28 scoped_ptr<extensions::api::file_system_provider_internal:: 28 scoped_ptr<extensions::api::file_system_provider_internal::
29 UnmountRequestedSuccess::Params> params); 29 UnmountRequestedSuccess::Params> params);
30 30
31 static scoped_ptr<RequestValue> CreateForGetMetadataSuccess(
32 scoped_ptr<extensions::api::file_system_provider_internal::
33 GetMetadataRequestedSuccess::Params> params);
34
31 static scoped_ptr<RequestValue> CreateForTesting(const std::string& params); 35 static scoped_ptr<RequestValue> CreateForTesting(const std::string& params);
32 36
33 const std::string* testing_params() const { return testing_params_.get(); }
34
35 const extensions::api::file_system_provider_internal:: 37 const extensions::api::file_system_provider_internal::
36 UnmountRequestedSuccess::Params* 38 UnmountRequestedSuccess::Params*
37 unmount_success_params() const { 39 unmount_success_params() const {
38 return unmount_success_params_.get(); 40 return unmount_success_params_.get();
39 } 41 }
40 42
43 const extensions::api::file_system_provider_internal::
44 GetMetadataRequestedSuccess::Params*
45 get_metadata_success_params() const {
46 return get_metadata_success_params_.get();
47 }
48
49 const std::string* testing_params() const { return testing_params_.get(); }
50
41 private: 51 private:
42 scoped_ptr<extensions::api::file_system_provider_internal:: 52 scoped_ptr<extensions::api::file_system_provider_internal::
43 UnmountRequestedSuccess::Params> unmount_success_params_; 53 UnmountRequestedSuccess::Params> unmount_success_params_;
54 scoped_ptr<extensions::api::file_system_provider_internal::
55 GetMetadataRequestedSuccess::Params>
56 get_metadata_success_params_;
44 scoped_ptr<std::string> testing_params_; 57 scoped_ptr<std::string> testing_params_;
45 58
46 DISALLOW_COPY_AND_ASSIGN(RequestValue); 59 DISALLOW_COPY_AND_ASSIGN(RequestValue);
47 }; 60 };
48 61
49 } // namespace file_system_provider 62 } // namespace file_system_provider
50 } // namespace chromeos 63 } // namespace chromeos
51 64
52 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REQUEST_VALUE_H_ 65 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_REQUEST_VALUE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698