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

Unified Diff: extensions/common/manifest_handlers/options_page_info.cc

Issue 564993002: Embedded Extension Options: remove flags and trunk channel restrictions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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
« no previous file with comments | « extensions/common/feature_switch.cc ('k') | extensions/common/switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/manifest_handlers/options_page_info.cc
diff --git a/extensions/common/manifest_handlers/options_page_info.cc b/extensions/common/manifest_handlers/options_page_info.cc
index 0c1ecfa077bf147bd583984e2c13f415fc28b80b..2c291e8f8e71b2aa1ce1c5b018482d2b30ad2a99 100644
--- a/extensions/common/manifest_handlers/options_page_info.cc
+++ b/extensions/common/manifest_handlers/options_page_info.cc
@@ -112,11 +112,10 @@ scoped_ptr<OptionsPageInfo> OptionsPageInfo::Create(
base::string16* error) {
GURL options_page;
bool chrome_style = false;
- bool open_in_tab = !FeatureSwitch::embedded_extension_options()->IsEnabled();
+ bool open_in_tab = false;
// Parse the options_ui object.
- if (options_ui_value &&
- FeatureSwitch::embedded_extension_options()->IsEnabled()) {
+ if (options_ui_value) {
base::string16 options_ui_error;
scoped_ptr<OptionsUI> options_ui =
« no previous file with comments | « extensions/common/feature_switch.cc ('k') | extensions/common/switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698