| 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 6effb607eab8d21df99b3834670d93a92c0a278a..a3f3589f8027ebc58012edbcc95d2d374468cf1d 100644
|
| --- a/chrome/browser/extensions/platform_app_launcher.cc
|
| +++ b/chrome/browser/extensions/platform_app_launcher.cc
|
| @@ -62,8 +62,10 @@ bool MakePathAbsolute(const base::FilePath& current_directory,
|
| if (file_path->IsAbsolute())
|
| return true;
|
|
|
| - if (current_directory.empty())
|
| - return file_util::AbsolutePath(file_path);
|
| + if (current_directory.empty()) {
|
| + *file_path = file_path->AsAbsolute();
|
| + return !file_path->empty();
|
| + }
|
|
|
| if (!current_directory.IsAbsolute())
|
| return false;
|
|
|