OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/extensions/extension_browser_event_router.h" | 5 #include "chrome/browser/extensions/extension_browser_event_router.h" |
6 | 6 |
7 #include "base/json_writer.h" | 7 #include "base/json_writer.h" |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "chrome/browser/browser.h" | 9 #include "chrome/browser/browser.h" |
10 #include "chrome/browser/profile.h" | 10 #include "chrome/browser/profile.h" |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 void ExtensionBrowserEventRouter::TabStripEmpty() { } | 352 void ExtensionBrowserEventRouter::TabStripEmpty() { } |
353 | 353 |
354 void ExtensionBrowserEventRouter::PageActionExecuted( | 354 void ExtensionBrowserEventRouter::PageActionExecuted( |
355 Profile* profile, | 355 Profile* profile, |
356 const std::string& extension_id, | 356 const std::string& extension_id, |
357 const std::string& page_action_id, | 357 const std::string& page_action_id, |
358 int tab_id, | 358 int tab_id, |
359 const std::string& url, | 359 const std::string& url, |
360 int button) { | 360 int button) { |
361 ListValue args; | 361 ListValue args; |
362 | |
363 args.Append(Value::CreateStringValue(page_action_id)); | 362 args.Append(Value::CreateStringValue(page_action_id)); |
364 | 363 |
365 DictionaryValue* data = new DictionaryValue(); | 364 DictionaryValue* data = new DictionaryValue(); |
366 data->Set(tab_keys::kTabIdKey, Value::CreateIntegerValue(tab_id)); | 365 data->Set(tab_keys::kTabIdKey, Value::CreateIntegerValue(tab_id)); |
367 data->Set(tab_keys::kTabUrlKey, Value::CreateStringValue(url)); | 366 data->Set(tab_keys::kTabUrlKey, Value::CreateStringValue(url)); |
368 data->Set(page_action_keys::kButtonKey, Value::CreateIntegerValue(button)); | 367 data->Set(page_action_keys::kButtonKey, Value::CreateIntegerValue(button)); |
369 | |
370 args.Append(data); | 368 args.Append(data); |
371 | 369 |
372 std::string json_args; | 370 std::string json_args; |
373 JSONWriter::Write(&args, false, &json_args); | 371 JSONWriter::Write(&args, false, &json_args); |
374 | 372 |
375 std::string event_name = extension_id + std::string("/") + page_action_id; | 373 std::string event_name = extension_id + std::string("/") + page_action_id; |
376 DispatchEvent(profile, event_name.c_str(), json_args); | 374 DispatchEvent(profile, event_name.c_str(), json_args); |
377 } | 375 } |
| 376 |
| 377 void ExtensionBrowserEventRouter::BrowserActionExecuted( |
| 378 Profile* profile, const std::string& extension_id, int window_id) { |
| 379 ListValue args; |
| 380 args.Append(Value::CreateIntegerValue(window_id)); |
| 381 |
| 382 std::string json_args; |
| 383 JSONWriter::Write(&args, false, &json_args); |
| 384 |
| 385 std::string event_name = std::string("browserAction/") + extension_id; |
| 386 DispatchEvent(profile, event_name.c_str(), json_args); |
| 387 } |
OLD | NEW |