forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_lifetime_monitor.cc
126 lines (101 loc) · 3.91 KB
/
app_lifetime_monitor.cc
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "apps/app_lifetime_monitor.h"
#include "base/observer_list.h"
#include "content/public/browser/browser_context.h"
#include "extensions/browser/app_window/app_window.h"
#include "extensions/browser/extension_host.h"
#include "extensions/common/extension.h"
namespace apps {
using extensions::AppWindow;
using extensions::AppWindowRegistry;
using extensions::Extension;
using extensions::ExtensionHost;
AppLifetimeMonitor::AppLifetimeMonitor(content::BrowserContext* context)
: context_(context) {
extension_host_registry_observation_.Observe(
extensions::ExtensionHostRegistry::Get(context_));
AppWindowRegistry* app_window_registry =
AppWindowRegistry::Factory::GetForBrowserContext(context_,
false /* create */);
DCHECK(app_window_registry);
app_window_registry->AddObserver(this);
}
AppLifetimeMonitor::~AppLifetimeMonitor() = default;
void AppLifetimeMonitor::AddObserver(Observer* observer) {
observers_.AddObserver(observer);
}
void AppLifetimeMonitor::RemoveObserver(Observer* observer) {
observers_.RemoveObserver(observer);
}
void AppLifetimeMonitor::OnExtensionHostCompletedFirstLoad(
content::BrowserContext* browser_context,
ExtensionHost* host) {
const Extension* extension = host->extension();
if (!extension || !extension->is_platform_app())
return;
NotifyAppStart(extension->id());
}
void AppLifetimeMonitor::OnExtensionHostDestroyed(
content::BrowserContext* browser_context,
extensions::ExtensionHost* host) {
const Extension* extension = host->extension();
if (!extension || !extension->is_platform_app())
return;
NotifyAppStop(extension->id());
}
void AppLifetimeMonitor::OnAppWindowRemoved(AppWindow* app_window) {
if (!HasOtherVisibleAppWindows(app_window))
NotifyAppDeactivated(app_window->extension_id());
}
void AppLifetimeMonitor::OnAppWindowHidden(AppWindow* app_window) {
if (!HasOtherVisibleAppWindows(app_window))
NotifyAppDeactivated(app_window->extension_id());
}
void AppLifetimeMonitor::OnAppWindowShown(AppWindow* app_window,
bool was_hidden) {
if (app_window->window_type() != AppWindow::WINDOW_TYPE_DEFAULT)
return;
// The app is being activated if this is the first window to become visible.
if (was_hidden && !HasOtherVisibleAppWindows(app_window)) {
NotifyAppActivated(app_window->extension_id());
}
}
void AppLifetimeMonitor::Shutdown() {
AppWindowRegistry* app_window_registry =
AppWindowRegistry::Factory::GetForBrowserContext(context_,
false /* create */);
if (app_window_registry)
app_window_registry->RemoveObserver(this);
}
bool AppLifetimeMonitor::HasOtherVisibleAppWindows(
AppWindow* app_window) const {
AppWindowRegistry::AppWindowList windows =
AppWindowRegistry::Get(app_window->browser_context())
->GetAppWindowsForApp(app_window->extension_id());
for (AppWindowRegistry::AppWindowList::const_iterator i = windows.begin();
i != windows.end();
++i) {
if (*i != app_window && !(*i)->is_hidden())
return true;
}
return false;
}
void AppLifetimeMonitor::NotifyAppStart(const std::string& app_id) {
for (auto& observer : observers_)
observer.OnAppStart(context_, app_id);
}
void AppLifetimeMonitor::NotifyAppActivated(const std::string& app_id) {
for (auto& observer : observers_)
observer.OnAppActivated(context_, app_id);
}
void AppLifetimeMonitor::NotifyAppDeactivated(const std::string& app_id) {
for (auto& observer : observers_)
observer.OnAppDeactivated(context_, app_id);
}
void AppLifetimeMonitor::NotifyAppStop(const std::string& app_id) {
for (auto& observer : observers_)
observer.OnAppStop(context_, app_id);
}
} // namespace apps