| Index: chrome/browser/web_applications/web_app.cc
|
| diff --git a/chrome/browser/web_applications/web_app.cc b/chrome/browser/web_applications/web_app.cc
|
| index 4af670503d20dd4503925f894bae9bf1c31e54a3..b0b6960b3d2c376ba9666e93d334f792ad47058f 100644
|
| --- a/chrome/browser/web_applications/web_app.cc
|
| +++ b/chrome/browser/web_applications/web_app.cc
|
| @@ -12,6 +12,7 @@
|
| #include "base/threading/thread.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/common/chrome_constants.h"
|
| +#include "chrome/common/extensions/app_launch_manifest_handler.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "content/public/browser/browser_thread.h"
|
| @@ -105,7 +106,9 @@ base::FilePath GetWebAppDataDirectory(const base::FilePath& profile_path,
|
| base::FilePath GetWebAppDataDirectory(const base::FilePath& profile_path,
|
| const extensions::Extension& extension) {
|
| return GetWebAppDataDirectory(
|
| - profile_path, extension.id(), GURL(extension.launch_web_url()));
|
| + profile_path,
|
| + extension.id(),
|
| + GURL(extensions::AppLaunchInfo::GetLaunchWebUrl(&extension)));
|
| }
|
|
|
| std::string GenerateApplicationNameFromInfo(
|
|
|