Chromium Code Reviews| Index: chrome/browser/extensions/extension_browser_event_router.h |
| diff --git a/chrome/browser/extensions/extension_browser_event_router.h b/chrome/browser/extensions/extension_browser_event_router.h |
| index 4cb53918459556a54e725aac3e35f502d329234d..7cb26f749dbae229e591d7600f836975f648ac5f 100644 |
| --- a/chrome/browser/extensions/extension_browser_event_router.h |
| +++ b/chrome/browser/extensions/extension_browser_event_router.h |
| @@ -126,17 +126,17 @@ class ExtensionBrowserEventRouter : public TabStripModelObserver, |
| // so we avoid duplication by dropping events destined for other profiles. |
| void DispatchEvent(Profile* profile, |
| const char* event_name, |
| - const std::string& json_args); |
| + base::ListValue* arguments); |
|
miket_OOO
2012/07/10 22:33:19
There should be some documentation here about owne
|
| void DispatchEventToExtension(Profile* profile, |
| const std::string& extension_id, |
| const char* event_name, |
| - const std::string& json_args); |
| + base::ListValue* event_args); |
| void DispatchEventsAcrossIncognito(Profile* profile, |
| const char* event_name, |
| - const std::string& json_args, |
| - const std::string& cross_incognito_args); |
| + base::ListValue* event_args, |
| + base::ListValue* cross_incognito_args); |
| void DispatchEventWithTab(Profile* profile, |
| const std::string& extension_id, |