| Index: ui/gfx/gfx_paths.cc
|
| diff --git a/ui/gfx/gfx_paths.cc b/ui/gfx/gfx_paths.cc
|
| index e78e72a4910c94d8f8959d48d6f3deb6f24ec96c..3d53dfd1a1b9f2ded8a7ad6a0a63f9a9cbe773bf 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:
|
|
|