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

Unified Diff: chrome/browser/extensions/extension_prefs.cc

Issue 5019005: Add "open as window" menu item to NTP app menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add test. Created 10 years, 1 month 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/extensions/extension_prefs.cc
diff --git a/chrome/browser/extensions/extension_prefs.cc b/chrome/browser/extensions/extension_prefs.cc
index 3c789b094fa88fcce2fcb8526a45694e5e428fb3..4bb28535c9faae924ec730c484de70145ae4d3c3 100644
--- a/chrome/browser/extensions/extension_prefs.cc
+++ b/chrome/browser/extensions/extension_prefs.cc
@@ -455,7 +455,8 @@ ExtensionPrefs::LaunchType ExtensionPrefs::GetLaunchType(
if (ReadExtensionPrefInteger(extension_id, kPrefLaunchType, &value) && (
value == LAUNCH_PINNED ||
value == LAUNCH_REGULAR ||
- value == LAUNCH_FULLSCREEN)) {
+ value == LAUNCH_FULLSCREEN ||
+ value == LAUNCH_WINDOW)) {
return static_cast<LaunchType>(value);
}
return LAUNCH_REGULAR;

Powered by Google App Engine
This is Rietveld 408576698