Index: ppapi/shared_impl/file_ref_util.cc |
diff --git a/ppapi/shared_impl/file_ref_util.cc b/ppapi/shared_impl/file_ref_util.cc |
index 3be8e0aed9476c4d3b086c1d4baea78e0afc62e4..a5523cbb944ad2e17417ffcfc19a05ae55e0221d 100644 |
--- a/ppapi/shared_impl/file_ref_util.cc |
+++ b/ppapi/shared_impl/file_ref_util.cc |
@@ -36,7 +36,7 @@ bool IsValidInternalPath(const std::string& path) { |
// The path starts with '/' |
// The path must contain valid UTF-8 characters. |
// It must not FilePath::ReferencesParent(). |
- if (path.empty() || !IsStringUTF8(path) || path[0] != '/') |
+ if (path.empty() || !base::IsStringUTF8(path) || path[0] != '/') |
return false; |
base::FilePath file_path = base::FilePath::FromUTF8Unsafe(path); |
if (file_path.ReferencesParent()) |