This source file includes following definitions.
- weak_factory_
- StartTabTransition
- CancelTabTransition
- PerformTabTransition
#include "chrome/browser/ui/tabs/hover_tab_selector.h"
#include "base/bind.h"
#include "base/compiler_specific.h"
#include "base/message_loop/message_loop.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
HoverTabSelector::HoverTabSelector(
TabStripModel* tab_strip_model)
: tab_strip_model_(tab_strip_model),
tab_transition_tab_index_(-1),
weak_factory_(this) {
DCHECK(tab_strip_model_);
}
HoverTabSelector::~HoverTabSelector() {
}
void HoverTabSelector::StartTabTransition(int index) {
if (weak_factory_.HasWeakPtrs()) {
if (index == tab_transition_tab_index_)
return;
CancelTabTransition();
}
if (index != tab_strip_model_->active_index()) {
const base::TimeDelta kHoverTransitionDelay =
base::TimeDelta::FromMilliseconds(500);
tab_transition_tab_index_ = index;
base::MessageLoop::current()->PostDelayedTask(
FROM_HERE,
base::Bind(&HoverTabSelector::PerformTabTransition,
weak_factory_.GetWeakPtr()),
kHoverTransitionDelay);
}
}
void HoverTabSelector::CancelTabTransition() {
weak_factory_.InvalidateWeakPtrs();
}
void HoverTabSelector::PerformTabTransition() {
DCHECK(tab_transition_tab_index_ >= 0 &&
tab_transition_tab_index_ < tab_strip_model_->count());
tab_strip_model_->ActivateTabAt(tab_transition_tab_index_, true);
}