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

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

Issue 1152613003: Implement sidebar support for extension action popups (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move SidebarManager to ExtensionSystem and remove notifications Created 5 years, 7 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/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index 1133a6fcb21540402c588dc94b548830e7f73d6b..515c09a115b418898b3eb6bcbada96af9d820523 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -2435,7 +2435,8 @@ bool Browser::SupportsWindowFeatureImpl(WindowFeature feature,
bool check_fullscreen) const {
bool hide_ui_for_fullscreen = check_fullscreen && ShouldHideUIForFullscreen();
- unsigned int features = FEATURE_INFOBAR | FEATURE_DOWNLOADSHELF;
+ unsigned int features =
+ FEATURE_INFOBAR | FEATURE_DOWNLOADSHELF | FEATURE_SIDEBAR;
if (is_type_tabbed())
features |= FEATURE_BOOKMARKBAR;

Powered by Google App Engine
This is Rietveld 408576698