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

Unified Diff: chrome/browser/ui/views/toolbar/browser_actions_container.cc

Issue 675023002: Make extensions that desire to act pop out if in overflow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Peter's Created 6 years, 2 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/toolbar/browser_actions_container.cc
diff --git a/chrome/browser/ui/views/toolbar/browser_actions_container.cc b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
index 080617f30596321e2b2e1cb491090b3e50b5cf2a..494abaa35919746bafdb5e7c29491ff2b2e505c0 100644
--- a/chrome/browser/ui/views/toolbar/browser_actions_container.cc
+++ b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
@@ -60,7 +60,8 @@ ScopedVector<ToolbarActionViewController> GetToolbarActions(
// Extension actions come first.
extensions::ExtensionActionManager* action_manager =
extensions::ExtensionActionManager::Get(browser->profile());
- const extensions::ExtensionList& toolbar_items = model->toolbar_items();
+ const extensions::ExtensionList& toolbar_items = model->GetItemOrderForTab(
+ browser->tab_strip_model()->GetActiveWebContents());
for (const scoped_refptr<const Extension>& extension : toolbar_items) {
actions.push_back(new ExtensionActionViewController(
extension.get(),
@@ -125,6 +126,8 @@ BrowserActionsContainer::BrowserActionsContainer(
resize_area_(NULL),
chevron_(NULL),
suppress_chevron_(false),
+ suppress_animation_(false),
+ suppress_layout_(false),
resize_amount_(0),
animation_target_size_(0) {
set_id(VIEW_ID_BROWSER_ACTION_TOOLBAR);
@@ -194,8 +197,22 @@ BrowserActionView* BrowserActionsContainer::GetViewForExtension(
}
void BrowserActionsContainer::RefreshBrowserActionViews() {
- for (BrowserActionView* view : browser_action_views_)
- view->UpdateState();
+ if (browser_action_views_.empty())
+ return; // Nothing to do.
+
+ // When we do a bulk-refresh of views (such as when we switch tabs), we don't
+ // animate the difference. We only animate when it's a change driven by the
+ // action.
+ base::AutoReset<bool> animation_resetter(&suppress_animation_, true);
+
+ {
+ // Don't layout until the end.
+ base::AutoReset<bool> layout_resetter(&suppress_layout_, true);
+ for (BrowserActionView* view : browser_action_views_)
+ view->UpdateState();
+ }
+
+ ReorderViews(); // Also triggers a layout.
}
void BrowserActionsContainer::CreateBrowserActionViews() {
@@ -203,15 +220,23 @@ void BrowserActionsContainer::CreateBrowserActionViews() {
if (!model_)
return;
- ScopedVector<ToolbarActionViewController> actions =
- GetToolbarActions(model_, browser_);
- for (ToolbarActionViewController* controller : actions) {
- BrowserActionView* view =
- new BrowserActionView(make_scoped_ptr(controller), browser_, this);
- browser_action_views_.push_back(view);
- AddChildView(view);
+ {
+ // We don't Layout while creating views. Instead, Layout() once at the end.
+ base::AutoReset<bool> layout_resetter(&suppress_layout_, true);
+
+ ScopedVector<ToolbarActionViewController> actions =
+ GetToolbarActions(model_, browser_);
+ for (ToolbarActionViewController* controller : actions) {
+ BrowserActionView* view =
+ new BrowserActionView(make_scoped_ptr(controller), browser_, this);
+ browser_action_views_.push_back(view);
+ AddChildView(view);
+ }
+ actions.weak_clear();
}
- actions.weak_clear();
+
+ Layout();
+ SchedulePaint();
}
void BrowserActionsContainer::DeleteBrowserActionViews() {
@@ -248,12 +273,10 @@ void BrowserActionsContainer::ExecuteExtensionCommand(
void BrowserActionsContainer::NotifyActionMovedToOverflow() {
// When an action is moved to overflow, we shrink the size of the container
// by 1.
- int icon_count = model_->GetVisibleIconCount();
+ size_t icon_count = model_->visible_icon_count();
// Since this happens when an icon moves from the main bar to overflow, we
// can't possibly have had no visible icons on the main bar.
- DCHECK_NE(0, icon_count);
- if (icon_count == -1)
- icon_count = browser_action_views_.size();
+ DCHECK_NE(0u, icon_count);
model_->SetVisibleIconCount(icon_count - 1);
}
@@ -357,6 +380,9 @@ gfx::Size BrowserActionsContainer::GetMinimumSize() const {
}
void BrowserActionsContainer::Layout() {
+ if (suppress_layout_)
+ return;
+
if (browser_action_views_.empty()) {
SetVisible(false);
return;
@@ -550,7 +576,7 @@ int BrowserActionsContainer::OnPerformDrop(
if (in_overflow_mode())
main_container_->NotifyActionMovedToOverflow();
else // This is the main container.
- model_->SetVisibleIconCount(model_->GetVisibleIconCount() + 1);
+ model_->SetVisibleIconCount(model_->visible_icon_count() + 1);
}
OnDragExited(); // Perform clean up after dragging.
@@ -781,14 +807,13 @@ void BrowserActionsContainer::ToolbarExtensionAdded(const Extension* extension,
if (!extensions::ExtensionSystem::Get(profile_)->runtime_data()->
IsBeingUpgraded(extension)) {
// We need to resize if either:
- // - The container is set to display all icons (visible count = -1), or
+ // - The container is set to display all icons, or
// - The container will need to expand to include the chevron. This can
// happen when the container is set to display <n> icons, where <n> is
// the number of icons before the new icon. With the new icon, the chevron
// will need to be displayed.
- int model_icon_count = model_->GetVisibleIconCount();
- if (model_icon_count == -1 ||
- (static_cast<size_t>(model_icon_count) < browser_action_views_.size() &&
+ if (model_->all_icons_visible() ||
+ (model_->visible_icon_count() < browser_action_views_.size() &&
(chevron_ && !chevron_->visible()))) {
suppress_chevron_ = true;
Animate(gfx::Tween::LINEAR, GetIconCount());
@@ -880,8 +905,15 @@ bool BrowserActionsContainer::ShowExtensionActionPopup(
}
void BrowserActionsContainer::ToolbarVisibleCountChanged() {
- if (GetPreferredWidth() != container_width_)
+ if (GetPreferredWidth() != container_width_) {
Animate(gfx::Tween::EASE_OUT, GetIconCount());
+ } else if (animation_target_size_ != 0) {
+ // It's possible that we're right where we're supposed to be in terms of
+ // icon count, but that we're also currently resizing. If this is the case,
+ // end the current animation with the current width.
+ animation_target_size_ = container_width_;
+ resize_animation_->Reset();
+ }
}
void BrowserActionsContainer::ToolbarHighlightModeChanged(
@@ -895,6 +927,12 @@ void BrowserActionsContainer::ToolbarHighlightModeChanged(
Animate(gfx::Tween::LINEAR, GetIconCount());
}
+void BrowserActionsContainer::OnToolbarReorderNecessary(
+ content::WebContents* web_contents) {
+ if (GetCurrentWebContents() == web_contents)
+ ReorderViews();
+}
+
Browser* BrowserActionsContainer::GetBrowser() {
return browser_;
}
@@ -980,7 +1018,8 @@ int BrowserActionsContainer::MinimumNonemptyWidth() const {
void BrowserActionsContainer::Animate(gfx::Tween::Type tween_type,
size_t num_visible_icons) {
int target_size = IconCountToWidth(num_visible_icons);
- if (resize_animation_ && !disable_animations_during_testing_) {
+ if (resize_animation_ && !disable_animations_during_testing_ &&
+ !suppress_animation_) {
// Animate! We have to set the animation_target_size_ after calling Reset(),
// because that could end up calling AnimationEnded which clears the value.
resize_animation_->Reset();
@@ -993,20 +1032,53 @@ void BrowserActionsContainer::Animate(gfx::Tween::Type tween_type,
}
}
+void BrowserActionsContainer::ReorderViews() {
+ extensions::ExtensionList new_order =
+ model_->GetItemOrderForTab(GetCurrentWebContents());
+ if (new_order.empty())
+ return; // Nothing to do.
+
+#if defined(DCHECK_IS_ON)
Peter Kasting 2014/10/31 19:01:08 I think you want "#if DCHECK_IS_ON", since I think
Devlin 2014/10/31 20:49:30 Ah, right. Done.
+ // Make sure the lists are in sync.
+ DCHECK_EQ(new_order.size(), browser_action_views_.size());
+ for (const scoped_refptr<const Extension>& extension : new_order)
+ DCHECK(GetViewForExtension(extension.get()));
+#endif
+
+ // Run through the views and compare them to the desired order. If something
+ // is out of place, find the correct spot for it.
+ for (size_t i = 0; i < new_order.size() - 1; ++i) {
+ if (new_order[i]->id() !=
+ browser_action_views_[i]->view_controller()->GetId()) {
+ // Find where the correct view is (it's guaranteed to be after our current
+ // index, since everything up to this point is correct).
+ size_t j = i + 1;
+ while (new_order[i]->id() !=
+ browser_action_views_[j]->view_controller()->GetId())
+ ++j;
+ std::swap(browser_action_views_[i], browser_action_views_[j]);
+ }
+ }
+
+ // Our visible browser actions may have changed - re-Layout() and check the
+ // size.
+ ToolbarVisibleCountChanged();
+ OnBrowserActionVisibilityChanged();
+}
+
size_t BrowserActionsContainer::GetIconCount() const {
if (!model_)
return 0u;
// Find the absolute value for the model's visible count.
- int model_visible_size = model_->GetVisibleIconCount();
- size_t absolute_model_visible_size = model_visible_size == -1 ?
- model_->toolbar_items().size() : model_visible_size;
+ size_t model_visible_size = model_->GetVisibleIconCountForTab(
+ browser_->tab_strip_model()->GetActiveWebContents());
-#if !defined(NDEBUG)
+#if defined(DCHECK_IS_ON)
// Good time for some sanity checks: We should never try to display more
// icons than we have, and we should always have a view per item in the model.
// (The only exception is if this is in initialization.)
- if (initialized_) {
+ if (initialized_ && !suppress_layout_) {
size_t num_extension_actions = 0u;
for (BrowserActionView* view : browser_action_views_) {
// No component action should ever have a valid extension id, so we can
@@ -1016,13 +1088,12 @@ size_t BrowserActionsContainer::GetIconCount() const {
if (crx_file::id_util::IdIsValid(view->view_controller()->GetId()))
++num_extension_actions;
}
- DCHECK_LE(absolute_model_visible_size, num_extension_actions);
+ DCHECK_LE(model_visible_size, num_extension_actions);
DCHECK_EQ(model_->toolbar_items().size(), num_extension_actions);
}
#endif
// The overflow displays any icons not shown by the main bar.
return in_overflow_mode() ?
- model_->toolbar_items().size() - absolute_model_visible_size :
- absolute_model_visible_size;
+ model_->toolbar_items().size() - model_visible_size : model_visible_size;
}

Powered by Google App Engine
This is Rietveld 408576698