summaryrefslogtreecommitdiffstats
path: root/base/value_conversions.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/value_conversions.h')
-rw-r--r--base/value_conversions.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/value_conversions.h b/base/value_conversions.h
index 7825bb1..cb6d55c 100644
--- a/base/value_conversions.h
+++ b/base/value_conversions.h
@@ -14,7 +14,7 @@ class FilePath;
namespace base {
-class Time;
+class TimeDelta;
class StringValue;
class Value;
@@ -22,8 +22,8 @@ class Value;
BASE_EXPORT StringValue* CreateFilePathValue(const FilePath& in_value);
BASE_EXPORT bool GetValueAsFilePath(const Value& value, FilePath* file_path);
-BASE_EXPORT StringValue* CreateTimeValue(const Time& time);
-BASE_EXPORT bool GetValueAsTime(const Value& value, Time* time);
+BASE_EXPORT StringValue* CreateTimeDeltaValue(const TimeDelta& time);
+BASE_EXPORT bool GetValueAsTimeDelta(const Value& value, TimeDelta* time);
} // namespace