Index: chrome/browser/ui/webui/ntp/app_launcher_handler.cc |
diff --git a/chrome/browser/ui/webui/ntp/app_launcher_handler.cc b/chrome/browser/ui/webui/ntp/app_launcher_handler.cc |
index e739dac57949953739eb3ca88747d30c85717a53..8f7eb84bc153a63ad71278786353ec8ec96b751d 100644 |
--- a/chrome/browser/ui/webui/ntp/app_launcher_handler.cc |
+++ b/chrome/browser/ui/webui/ntp/app_launcher_handler.cc |
@@ -701,7 +701,6 @@ void AppLauncherHandler::HandleGenerateAppForLink(const base::ListValue* args) { |
} |
scoped_ptr<AppInstallInfo> install_info(new AppInstallInfo()); |
- install_info->is_bookmark_app = true; |
install_info->title = title; |
install_info->app_url = launch_url; |
install_info->page_ordinal = page_ordinal; |
@@ -733,7 +732,6 @@ void AppLauncherHandler::OnFaviconForApp( |
scoped_ptr<AppInstallInfo> install_info, |
const chrome::FaviconImageResult& image_result) { |
scoped_ptr<WebApplicationInfo> web_app(new WebApplicationInfo()); |
- web_app->is_bookmark_app = install_info->is_bookmark_app; |
web_app->title = install_info->title; |
web_app->app_url = install_info->app_url; |