Update WebFrameTestProxy and WebTestProxy to mostly follow Chrome style.
[chromium-blink-merge.git] / base / value_conversions.cc
blob45cd619e90820ed180259c9d3329aeb0af23715d
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.
5 #include "base/value_conversions.h"
7 #include <string>
9 #include "base/basictypes.h"
10 #include "base/files/file_path.h"
11 #include "base/strings/string_number_conversions.h"
12 #include "base/time/time.h"
13 #include "base/values.h"
15 namespace base {
17 // |Value| internally stores strings in UTF-8, so we have to convert from the
18 // system native code to UTF-8 and back.
19 StringValue* CreateFilePathValue(const FilePath& in_value) {
20 return new StringValue(in_value.AsUTF8Unsafe());
23 bool GetValueAsFilePath(const Value& value, FilePath* file_path) {
24 std::string str;
25 if (!value.GetAsString(&str))
26 return false;
27 if (file_path)
28 *file_path = FilePath::FromUTF8Unsafe(str);
29 return true;
32 // |Value| does not support 64-bit integers, and doubles do not have enough
33 // precision, so we store the 64-bit time value as a string instead.
34 StringValue* CreateTimeDeltaValue(const TimeDelta& time) {
35 std::string string_value = base::Int64ToString(time.ToInternalValue());
36 return new StringValue(string_value);
39 bool GetValueAsTimeDelta(const Value& value, TimeDelta* time) {
40 std::string str;
41 int64 int_value;
42 if (!value.GetAsString(&str) || !base::StringToInt64(str, &int_value))
43 return false;
44 if (time)
45 *time = TimeDelta::FromInternalValue(int_value);
46 return true;
49 } // namespace base