summaryrefslogtreecommitdiff
path: root/base/value_conversions.cc
diff options
context:
space:
mode:
authorbauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-15 18:56:29 +0900
committerQijiang Fan <fqj@google.com>2020-06-04 11:13:18 +0900
commit6f80e2b01b8d3bd9e4019ce746699b58c47b7fd4 (patch)
tree8a9b68efe44bf11a4ed08a79986a3eb063fa8e38 /base/value_conversions.cc
parent899d4e0b5d5db4a7d1be3bd7f7a0a107a6ec537f (diff)
downloadlibchrome-6f80e2b01b8d3bd9e4019ce746699b58c47b7fd4.tar.gz
Tentative compile fix.
TBR=hbono git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78184 0039d316-1c4b-4281-b951-d872f2087c98 CrOS-Libchrome-Original-Commit: f726d413812b74af673cb4faa31ed758ef840923
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 09522be00e..64513d070d 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;
}