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

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

Issue 6086004: Set Browser::app_name_ in a reasonable way for extension apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert logging to understand try fails. Created 10 years 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
« no previous file with comments | « chrome/browser/ui/browser.h ('k') | chrome/browser/ui/browser_init.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index c3604db859ec62e41be7a923bfb7a22ea547f933..8a5c852cd9a65389d21366ea947bd612cca5e6b3 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -542,8 +542,13 @@ TabContents* Browser::OpenApplicationWindow(
url = extension->GetFullLaunchURL();
}
- // TODO(erikkay) this can't be correct for extensions
- std::string app_name = web_app::GenerateApplicationNameFromURL(url);
+ std::string app_name;
+ if (extension)
+ app_name =
+ web_app::GenerateApplicationNameFromExtensionId(extension->id());
+ else
+ app_name = web_app::GenerateApplicationNameFromURL(url);
+
RegisterAppPrefs(app_name);
bool as_panel = extension && (container == extension_misc::LAUNCH_PANEL);
« no previous file with comments | « chrome/browser/ui/browser.h ('k') | chrome/browser/ui/browser_init.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698