diff options
Diffstat (limited to 'ui/gfx/gfx_paths.cc')
-rw-r--r-- | ui/gfx/gfx_paths.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gfx/gfx_paths.cc b/ui/gfx/gfx_paths.cc index e78e72a..3d53dfd 100644 --- a/ui/gfx/gfx_paths.cc +++ b/ui/gfx/gfx_paths.cc @@ -24,7 +24,7 @@ bool PathProvider(int key, base::FilePath* result) { cur = cur.Append(FILE_PATH_LITERAL("gfx")); cur = cur.Append(FILE_PATH_LITERAL("test")); cur = cur.Append(FILE_PATH_LITERAL("data")); - if (!file_util::PathExists(cur)) // we don't want to create this + if (!base::PathExists(cur)) // we don't want to create this return false; break; default: |