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

Side by Side Diff: base/value_conversions.h

Issue 1647803004: Move base to DEPS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « base/tuple_unittest.cc ('k') | base/value_conversions.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef BASE_VALUE_CONVERSIONS_H_
6 #define BASE_VALUE_CONVERSIONS_H_
7
8 // This file contains methods to convert things to a |Value| and back.
9
10 #include "base/base_export.h"
11
12
13 namespace base {
14
15 class FilePath;
16 class TimeDelta;
17 class StringValue;
18 class Value;
19
20 // The caller takes ownership of the returned value.
21 BASE_EXPORT StringValue* CreateFilePathValue(const FilePath& in_value);
22 BASE_EXPORT bool GetValueAsFilePath(const Value& value, FilePath* file_path);
23
24 BASE_EXPORT StringValue* CreateTimeDeltaValue(const TimeDelta& time);
25 BASE_EXPORT bool GetValueAsTimeDelta(const Value& value, TimeDelta* time);
26
27 } // namespace base
28
29 #endif // BASE_VALUE_CONVERSIONS_H_
OLDNEW
« no previous file with comments | « base/tuple_unittest.cc ('k') | base/value_conversions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698