| Index: chrome/browser/chromeos/file_system_provider/request_value.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/request_value.cc b/chrome/browser/chromeos/file_system_provider/request_value.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..105e6b0a92ea496048438858eb1a12c9dc766b35
|
| --- /dev/null
|
| +++ b/chrome/browser/chromeos/file_system_provider/request_value.cc
|
| @@ -0,0 +1,32 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/chromeos/file_system_provider/request_value.h"
|
| +
|
| +namespace chromeos {
|
| +namespace file_system_provider {
|
| +
|
| +RequestValue::RequestValue() {
|
| +}
|
| +
|
| +RequestValue::~RequestValue() {
|
| +}
|
| +
|
| +scoped_ptr<RequestValue> RequestValue::CreateForUnmountSuccess(
|
| + scoped_ptr<extensions::api::file_system_provider_internal::
|
| + UnmountRequestedSuccess::Params> params) {
|
| + scoped_ptr<RequestValue> result(new RequestValue);
|
| + result->unmount_success_params_ = params.Pass();
|
| + return result.Pass();
|
| +}
|
| +
|
| +scoped_ptr<RequestValue> RequestValue::CreateForTesting(
|
| + const std::string& params) {
|
| + scoped_ptr<RequestValue> result(new RequestValue);
|
| + result->testing_params_.reset(new std::string(params));
|
| + return result.Pass();
|
| +}
|
| +
|
| +} // namespace file_system_provider
|
| +} // namespace chromeos
|
|
|