Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Unified Diff: chrome/browser/ui/views/create_application_shortcut_view.cc

Issue 6794035: Move dispatching and sending of the last extension specific messages out of TabContents and Rende... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/create_application_shortcut_view.cc
===================================================================
--- chrome/browser/ui/views/create_application_shortcut_view.cc (revision 80315)
+++ chrome/browser/ui/views/create_application_shortcut_view.cc (working copy)
@@ -7,6 +7,7 @@
#include "base/callback.h"
#include "base/utf_string_conversions.h"
#include "base/win/windows_version.h"
+#include "chrome/browser/extensions/extension_tab_helper.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
@@ -416,7 +417,7 @@
web_app::GetShortcutInfoForTab(tab_contents_, &shortcut_info_);
const WebApplicationInfo& app_info =
- tab_contents_->tab_contents()->web_app_info();
+ tab_contents_->extension_tab_helper()->web_app_info();
if (!app_info.icons.empty()) {
web_app::GetIconsInfo(app_info, &unprocessed_icons_);
FetchIcon();

Powered by Google App Engine
This is Rietveld 408576698