| Index: chrome/browser/autocomplete/extension_app_provider.cc
|
| diff --git a/chrome/browser/autocomplete/extension_app_provider.cc b/chrome/browser/autocomplete/extension_app_provider.cc
|
| index 5d655f1e0a83e19726dcc71a145e63cfa3b0768a..934b84d7f9faf89d29bb238ef0d8f6901469d6de 100644
|
| --- a/chrome/browser/autocomplete/extension_app_provider.cc
|
| +++ b/chrome/browser/autocomplete/extension_app_provider.cc
|
| @@ -18,6 +18,7 @@
|
| #include "chrome/browser/ui/extensions/application_launch.h"
|
| #include "chrome/browser/ui/webui/ntp/app_launcher_handler.h"
|
| #include "chrome/common/chrome_notification_types.h"
|
| +#include "chrome/common/extensions/app_launcher_info.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "content/public/browser/notification_source.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| @@ -163,8 +164,8 @@ void ExtensionAppProvider::RefreshAppList() {
|
| !extension_service->CanLoadInIncognito(app))
|
| continue;
|
|
|
| - GURL launch_url =
|
| - app->is_platform_app() ? app->url() : app->GetFullLaunchURL();
|
| + GURL launch_url = app->is_platform_app() ?
|
| + app->url() : extensions::AppLauncherInfo::GetFullLaunchURL(app);
|
| DCHECK(launch_url.is_valid());
|
|
|
| ExtensionApp extension_app = {
|
|
|