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

Unified Diff: ceee/ie/broker/broker.cc

Issue 4989002: Firing event to broker without worker thread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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: ceee/ie/broker/broker.cc
===================================================================
--- ceee/ie/broker/broker.cc (revision 66617)
+++ ceee/ie/broker/broker.cc (working copy)
@@ -28,7 +28,7 @@
}
STDMETHODIMP CeeeBroker::FireEvent(BSTR event_name, BSTR event_args) {
- ChromePostman::GetInstance()->FireEvent(event_name, event_args);
+ ChromePostman::GetInstance()->FireEvent(CW2A(event_name), CW2A(event_args));
Sigurður Ásgeirsson 2010/11/19 18:29:30 A NULL BSTR is synonymous with the empty string, s
Vitaly Buka corp 2010/11/19 20:30:38 Done.
return S_OK;
}

Powered by Google App Engine
This is Rietveld 408576698