| Index: chrome/browser/extensions/platform_app_launcher.cc
|
| diff --git a/chrome/browser/extensions/platform_app_launcher.cc b/chrome/browser/extensions/platform_app_launcher.cc
|
| index 03d914b45b5d83066f8d85ca3e233d96ea7d80d7..c6c862cb767a3b8c66c3dcc31161eeffd5b9c43c 100644
|
| --- a/chrome/browser/extensions/platform_app_launcher.cc
|
| +++ b/chrome/browser/extensions/platform_app_launcher.cc
|
| @@ -146,7 +146,7 @@ class PlatformAppPathLauncher
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
|
|
|
| // If the file doesn't exist, or is a directory, launch with no launch data.
|
| - if (!file_util::PathExists(file_path_) ||
|
| + if (!base::PathExists(file_path_) ||
|
| file_util::DirectoryExists(file_path_)) {
|
| LOG(WARNING) << "No file exists with path " << file_path_.value();
|
| BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, base::Bind(
|
|
|