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

Unified Diff: ceee/ie/plugin/bho/events_funnel.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/plugin/bho/events_funnel.cc
===================================================================
--- ceee/ie/plugin/bho/events_funnel.cc (revision 66229)
+++ ceee/ie/plugin/bho/events_funnel.cc (working copy)
@@ -16,12 +16,12 @@
EventsFunnel::EventsFunnel(bool keep_broker_alive)
Sigurður Ásgeirsson 2010/11/16 18:23:04 IMHO it would it simplify everything to keep an Rp
Vitaly Buka corp 2010/11/18 23:14:21 Done.
: keep_broker_alive_(keep_broker_alive) {
if (keep_broker_alive_)
- ceee_module_util::AddRefModuleWorkerThread();
+ ceee_module_util::AddRefBroker();
}
EventsFunnel::~EventsFunnel() {
if (keep_broker_alive_)
- ceee_module_util::ReleaseModuleWorkerThread();
+ ceee_module_util::ReleaseBroker();
}
HRESULT EventsFunnel::SendEvent(const char* event_name,

Powered by Google App Engine
This is Rietveld 408576698