From f726d413812b74af673cb4faa31ed758ef840923 Mon Sep 17 00:00:00 2001 From: "bauerb@chromium.org" Date: Tue, 15 Mar 2011 09:56:29 +0000 Subject: Tentative compile fix. TBR=hbono git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78184 0039d316-1c4b-4281-b951-d872f2087c98 --- base/value_conversions.cc | 4 ++-- 1 file 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; } -- cgit v1.1