| 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 d0b01a23ce484ba568dc3b737a4f338b54cffe55..eddc41ac5e3e2c13a5a21a8716d38d3d7587aeda 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_launcher_info.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::AppLauncherInfo::GetLaunchWebURL(&extension))); | 
| } | 
|  | 
| std::string GenerateApplicationNameFromInfo( | 
|  |