1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
ash / wm / test / test_activation_delegate.cc [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/wm/test/test_activation_delegate.h"
#include "ui/aura/window.h"
#include "ui/wm/core/window_util.h"
namespace ash {
TestActivationDelegate::TestActivationDelegate() = default;
TestActivationDelegate::TestActivationDelegate(bool activate)
: activate_(activate) {}
void TestActivationDelegate::SetWindow(aura::Window* window) {
window_ = window;
::wm::SetActivationDelegate(window, this);
::wm::SetActivationChangeObserver(window, this);
}
bool TestActivationDelegate::ShouldActivate() const {
should_activate_count_++;
return activate_;
}
void TestActivationDelegate::OnWindowActivated(
::wm::ActivationChangeObserver::ActivationReason reason,
aura::Window* gained_active,
aura::Window* lost_active) {
DCHECK(window_ == gained_active || window_ == lost_active);
if (window_ == gained_active) {
activated_count_++;
} else if (window_ == lost_active) {
if (lost_active_count_++ == 0)
window_was_active_ = wm::IsActiveWindow(window_);
}
}
} // namespace ash