summaryrefslogtreecommitdiffstats
path: root/base/value_conversions.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/value_conversions.cc')
-rw-r--r--base/value_conversions.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/value_conversions.cc b/base/value_conversions.cc
index 09522be..64513d0 100644
--- a/base/value_conversions.cc
+++ b/base/value_conversions.cc
@@ -37,7 +37,7 @@ FilePath UTF8ToFilePath(const std::string& str) {
} // namespace
StringValue* CreateFilePathValue(const FilePath& in_value) {
- return new StringValue(internal::FilePathToUTF8(in_value));
+ return new StringValue(FilePathToUTF8(in_value));
}
bool GetValueAsFilePath(const Value& value, FilePath* file_path) {
@@ -45,7 +45,7 @@ bool GetValueAsFilePath(const Value& value, FilePath* file_path) {
if (!value.GetAsString(&str))
return false;
if (file_path)
- *file_path = internal::UTF8ToFilePath(str);
+ *file_path = UTF8ToFilePath(str);
return true;
}