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

Unified Diff: ceee/ie/plugin/toolband/tool_band.cc

Issue 5271011: Avoid double-setting of the tool band ID in the CEEE executors manager.... (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
« no previous file with comments | « ceee/ie/plugin/toolband/tool_band.h ('k') | ceee/ie/plugin/toolband/tool_band_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/plugin/toolband/tool_band.cc
===================================================================
--- ceee/ie/plugin/toolband/tool_band.cc (revision 67716)
+++ ceee/ie/plugin/toolband/tool_band.cc (working copy)
@@ -57,6 +57,7 @@
listening_to_browser_events_(false),
band_id_(0),
is_quitting_(false),
+ already_sent_id_to_bho_(false),
current_width_(kToolBandMinWidth),
current_height_(kToolBandHeight) {
TRACE_EVENT_BEGIN("ceee.toolband", this, "");
@@ -696,8 +697,11 @@
DVLOG(1) << "BHO already loaded";
if (existing_bho.vt != VT_UNKNOWN || existing_bho.punkVal == NULL)
return E_FAIL;
- else
- return SendSessionIdToBho(existing_bho.punkVal);
+
+ hr = SendSessionIdToBho(existing_bho.punkVal);
+ DCHECK(SUCCEEDED(hr)) << "Failed to send tool band session ID to the " <<
+ "BHO." << com::LogHr(hr);
+ return SUCCEEDED(hr) ? S_OK : hr;
}
ScopedComPtr<IObjectWithSite> bho;
@@ -721,7 +725,10 @@
}
LOG_IF(INFO, SUCCEEDED(hr)) << "CEEE BHO has been created by the toolband.";
- return SendSessionIdToBho(bho);
+ hr = SendSessionIdToBho(bho);
+ DCHECK(SUCCEEDED(hr)) << "Failed to send tool band session ID to the BHO." <<
+ com::LogHr(hr);
+ return SUCCEEDED(hr) ? S_OK : hr;
}
HRESULT ToolBand::CreateBhoInstance(IObjectWithSite** new_bho_instance) {
@@ -742,6 +749,8 @@
}
HRESULT ToolBand::SendSessionIdToBho(IUnknown* bho) {
+ if (already_sent_id_to_bho_)
+ return S_FALSE;
// Now send the tool band's session ID to the BHO.
ScopedComPtr<ICeeeBho> ceee_bho;
HRESULT hr = ceee_bho.QueryFrom(bho);
@@ -749,7 +758,10 @@
int session_id = 0;
hr = GetSessionId(&session_id);
if (SUCCEEDED(hr)) {
- return ceee_bho->SetToolBandSessionId(session_id);
+ hr = ceee_bho->SetToolBandSessionId(session_id);
+ if (SUCCEEDED(hr))
+ already_sent_id_to_bho_ = true;
+ return hr;
}
}
return E_FAIL;
« no previous file with comments | « ceee/ie/plugin/toolband/tool_band.h ('k') | ceee/ie/plugin/toolband/tool_band_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698