Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1267)

Unified Diff: chrome/browser/extensions/api/runtime/runtime_api.cc

Issue 10694085: Refactor extension event distribution to use Values instead of JSON strings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/runtime/runtime_api.cc
diff --git a/chrome/browser/extensions/api/runtime/runtime_api.cc b/chrome/browser/extensions/api/runtime/runtime_api.cc
index 64106fec0ec8f93e181a301da90ca6fd4d656f81..2f9535f05bbd4383a9e2cbf4e98b2aedbf5a3865 100644
--- a/chrome/browser/extensions/api/runtime/runtime_api.cc
+++ b/chrome/browser/extensions/api/runtime/runtime_api.cc
@@ -37,7 +37,7 @@ void RuntimeEventRouter::DispatchOnInstalledEvent(
// ignored.
system->event_router()->AddLazyEventListener(kOnInstalledEvent, extension_id);
system->event_router()->DispatchEventToExtension(
- extension_id, kOnInstalledEvent, "[]", NULL, GURL());
+ extension_id, kOnInstalledEvent, NULL, NULL, GURL());
}
bool RuntimeGetBackgroundPageFunction::RunImpl() {

Powered by Google App Engine
This is Rietveld 408576698