summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-15 09:56:29 +0000
committerbauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-15 09:56:29 +0000
commitf726d413812b74af673cb4faa31ed758ef840923 (patch)
treeb49faa3f30f7778d6a00aa28b887d62c8ccc3808
parent32aa75b19e298e5998367fbe5507655533651217 (diff)
downloadchromium_src-f726d413812b74af673cb4faa31ed758ef840923.zip
chromium_src-f726d413812b74af673cb4faa31ed758ef840923.tar.gz
chromium_src-f726d413812b74af673cb4faa31ed758ef840923.tar.bz2
Tentative compile fix.
TBR=hbono git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78184 0039d316-1c4b-4281-b951-d872f2087c98
-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;
}