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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/extension_browser_event_router.h"
#include "base/json_writer.h"
#include "base/values.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/extensions/extension.h"
#include "chrome/browser/extensions/extension_message_service.h"
#include "chrome/browser/extensions/extension_tabs_module.h"
#include "chrome/common/notification_service.h"
const char* kOnPageActionExecuted = "page-action-executed";
const char* kOnTabCreated = "tab-created";
const char* kOnTabMoved = "tab-moved";
const char* kOnTabSelectionChanged = "tab-selection-changed";
const char* kOnTabAttached = "tab-attached";
const char* kOnTabDetached = "tab-detached";
const char* kOnTabRemoved = "tab-removed";
const char* kOnWindowCreated = "window-created";
const char* kOnWindowRemoved = "window-removed";
const char* kOnWindowFocusedChanged = "window-focus-changed";
ExtensionBrowserEventRouter* ExtensionBrowserEventRouter::GetInstance() {
return Singleton<ExtensionBrowserEventRouter>::get();
}
static void DispatchEvent(Profile *profile,
const char* event_name,
const std::string json_args) {
ExtensionMessageService::GetInstance(profile->GetRequestContext())->
DispatchEventToRenderers(event_name, json_args);
}
static void DispatchSimpleBrowserEvent(Profile *profile, const int window_id,
const char* event_name) {
ListValue args;
args.Append(Value::CreateIntegerValue(window_id));
std::string json_args;
JSONWriter::Write(&args, false, &json_args);
DispatchEvent(profile, event_name, json_args);
}
void ExtensionBrowserEventRouter::Init() {
if (initialized_)
return;
BrowserList::AddObserver(this);
initialized_ = true;
}
ExtensionBrowserEventRouter::ExtensionBrowserEventRouter()
: initialized_(false) { }
void ExtensionBrowserEventRouter::OnBrowserAdded(const Browser* browser) {
// Start listening to TabStripModel events for this browser.
browser->tabstrip_model()->AddObserver(this);
DispatchSimpleBrowserEvent(browser->profile(),
ExtensionTabUtil::GetWindowId(browser),
kOnWindowCreated);
}
void ExtensionBrowserEventRouter::OnBrowserRemoving(const Browser* browser) {
// Stop listening to TabStripModel events for this browser.
browser->tabstrip_model()->RemoveObserver(this);
DispatchSimpleBrowserEvent(browser->profile(),
ExtensionTabUtil::GetWindowId(browser),
kOnWindowRemoved);
}
void ExtensionBrowserEventRouter::OnBrowserSetLastActive(
const Browser* browser) {
DispatchSimpleBrowserEvent(browser->profile(),
ExtensionTabUtil::GetWindowId(browser),
kOnWindowFocusedChanged);
}
void ExtensionBrowserEventRouter::TabCreatedAt(TabContents* contents,
int index,
bool foreground) {
ListValue args;
args.Append(ExtensionTabUtil::CreateTabValue(contents));
std::string json_args;
JSONWriter::Write(&args, false, &json_args);
DispatchEvent(contents->profile(), kOnTabCreated, json_args);
}
void ExtensionBrowserEventRouter::TabInsertedAt(TabContents* contents,
int index,
bool foreground) {
// If tab is new, send tab-created event.
int tab_id = ExtensionTabUtil::GetTabId(contents);
if (tab_ids_.find(tab_id) == tab_ids_.end()) {
tab_ids_.insert(tab_id);
TabCreatedAt(contents, index, foreground);
return;
}
ListValue args;
args.Append(Value::CreateIntegerValue(tab_id));
DictionaryValue *object_args = new DictionaryValue();
object_args->Set(L"newWindowId", Value::CreateIntegerValue(
ExtensionTabUtil::GetWindowIdOfTab(contents)));
object_args->Set(L"newPosition", Value::CreateIntegerValue(index));
args.Append(object_args);
std::string json_args;
JSONWriter::Write(&args, false, &json_args);
DispatchEvent(contents->profile(), kOnTabAttached, json_args);
}
void ExtensionBrowserEventRouter::TabDetachedAt(TabContents* contents,
int index) {
int tab_id = ExtensionTabUtil::GetTabId(contents);
if (tab_ids_.find(tab_id) == tab_ids_.end()) {
// The tab was removed. Don't send detach event.
return;
}
ListValue args;
args.Append(Value::CreateIntegerValue(tab_id));
DictionaryValue *object_args = new DictionaryValue();
object_args->Set(L"oldWindowId", Value::CreateIntegerValue(
ExtensionTabUtil::GetWindowIdOfTab(contents)));
object_args->Set(L"oldPosition", Value::CreateIntegerValue(index));
args.Append(object_args);
std::string json_args;
JSONWriter::Write(&args, false, &json_args);
DispatchEvent(contents->profile(), kOnTabDetached, json_args);
}
void ExtensionBrowserEventRouter::TabClosingAt(TabContents* contents,
int index) {
int tab_id = ExtensionTabUtil::GetTabId(contents);
ListValue args;
args.Append(Value::CreateIntegerValue(tab_id));
std::string json_args;
JSONWriter::Write(&args, false, &json_args);
DispatchEvent(contents->profile(), kOnTabRemoved, json_args);
int removed_count = tab_ids_.erase(tab_id);
DCHECK(removed_count > 0);
}
void ExtensionBrowserEventRouter::TabSelectedAt(TabContents* old_contents,
TabContents* new_contents,
int index,
bool user_gesture) {
ListValue args;
args.Append(Value::CreateIntegerValue(
ExtensionTabUtil::GetTabId(new_contents)));
DictionaryValue *object_args = new DictionaryValue();
object_args->Set(L"windowId", Value::CreateIntegerValue(
ExtensionTabUtil::GetWindowIdOfTab(new_contents)));
args.Append(object_args);
std::string json_args;
JSONWriter::Write(&args, false, &json_args);
DispatchEvent(new_contents->profile(), kOnTabSelectionChanged, json_args);
}
void ExtensionBrowserEventRouter::TabMoved(TabContents* contents,
int from_index,
int to_index) {
ListValue args;
args.Append(Value::CreateIntegerValue(ExtensionTabUtil::GetTabId(contents)));
DictionaryValue *object_args = new DictionaryValue();
object_args->Set(L"windowId", Value::CreateIntegerValue(
ExtensionTabUtil::GetWindowIdOfTab(contents)));
object_args->Set(L"fromIndex", Value::CreateIntegerValue(from_index));
object_args->Set(L"toIndex", Value::CreateIntegerValue(to_index));
args.Append(object_args);
std::string json_args;
JSONWriter::Write(&args, false, &json_args);
DispatchEvent(contents->profile(), kOnTabMoved, json_args);
}
void ExtensionBrowserEventRouter::TabChangedAt(TabContents* contents,
int index,
bool loading_only) { }
void ExtensionBrowserEventRouter::TabStripEmpty() { }
void ExtensionBrowserEventRouter::PageActionExecuted(Profile *profile,
std::string page_action_id,
int tab_id,
std::string url) {
ListValue args;
DictionaryValue *object_args = new DictionaryValue();
object_args->Set(L"pageActionId", Value::CreateStringValue(page_action_id));
DictionaryValue *data = new DictionaryValue();
data->Set(L"tabId", Value::CreateIntegerValue(tab_id));
data->Set(L"tabUrl", Value::CreateStringValue(url));
object_args->Set(L"data", data);
args.Append(object_args);
std::string json_args;
JSONWriter::Write(&args, false, &json_args);
DispatchEvent(profile, kOnPageActionExecuted, json_args);
}
|