| Index: trunk/src/ppapi/shared_impl/file_ref_util.cc
|
| ===================================================================
|
| --- trunk/src/ppapi/shared_impl/file_ref_util.cc (revision 257532)
|
| +++ trunk/src/ppapi/shared_impl/file_ref_util.cc (working copy)
|
| @@ -36,7 +36,7 @@
|
| // The path starts with '/'
|
| // The path must contain valid UTF-8 characters.
|
| // It must not FilePath::ReferencesParent().
|
| - if (path.empty() || !base::IsStringUTF8(path) || path[0] != '/')
|
| + if (path.empty() || !IsStringUTF8(path) || path[0] != '/')
|
| return false;
|
| base::FilePath file_path = base::FilePath::FromUTF8Unsafe(path);
|
| if (file_path.ReferencesParent())
|
|
|