| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 BASE_VALUE_CONVERSIONS_H_ | 5 #ifndef BASE_VALUE_CONVERSIONS_H_ |
| 6 #define BASE_VALUE_CONVERSIONS_H_ | 6 #define BASE_VALUE_CONVERSIONS_H_ |
| 7 | 7 |
| 8 // This file contains methods to convert things to a |Value| and back. | 8 // This file contains methods to convert things to a |Value| and back. |
| 9 | 9 |
| 10 #include <memory> |
| 10 #include "base/base_export.h" | 11 #include "base/base_export.h" |
| 11 | 12 |
| 12 | |
| 13 namespace base { | 13 namespace base { |
| 14 | 14 |
| 15 class FilePath; | 15 class FilePath; |
| 16 class TimeDelta; | 16 class TimeDelta; |
| 17 class Value; | 17 class Value; |
| 18 | 18 |
| 19 // The caller takes ownership of the returned value. | 19 // The caller takes ownership of the returned value. |
| 20 BASE_EXPORT Value* CreateFilePathValue(const FilePath& in_value); | 20 BASE_EXPORT std::unique_ptr<Value> CreateFilePathValue( |
| 21 const FilePath& in_value); |
| 21 BASE_EXPORT bool GetValueAsFilePath(const Value& value, FilePath* file_path); | 22 BASE_EXPORT bool GetValueAsFilePath(const Value& value, FilePath* file_path); |
| 22 | 23 |
| 23 BASE_EXPORT Value* CreateTimeDeltaValue(const TimeDelta& time); | 24 BASE_EXPORT std::unique_ptr<Value> CreateTimeDeltaValue(const TimeDelta& time); |
| 24 BASE_EXPORT bool GetValueAsTimeDelta(const Value& value, TimeDelta* time); | 25 BASE_EXPORT bool GetValueAsTimeDelta(const Value& value, TimeDelta* time); |
| 25 | 26 |
| 26 } // namespace base | 27 } // namespace base |
| 27 | 28 |
| 28 #endif // BASE_VALUE_CONVERSIONS_H_ | 29 #endif // BASE_VALUE_CONVERSIONS_H_ |
| OLD | NEW |