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

Unified Diff: ceee/ie/plugin/bho/browser_helper_object.cc

Issue 6295006: Merge 68951 - Added refreshing of elevation policy on first run of new versio... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/597/src/
Patch Set: Created 9 years, 11 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
« no previous file with comments | « ceee/ie/common/ceee_module_util.cc ('k') | ceee/ie/plugin/bho/executor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ceee/ie/plugin/bho/browser_helper_object.cc
===================================================================
--- ceee/ie/plugin/bho/browser_helper_object.cc (revision 71509)
+++ ceee/ie/plugin/bho/browser_helper_object.cc (working copy)
@@ -258,10 +258,7 @@
DCHECK(broker);
if (broker == NULL)
return E_INVALIDARG;
- HRESULT hr = ::CoCreateInstance(CLSID_CeeeBroker, NULL, CLSCTX_ALL,
- IID_ICeeeBrokerRegistrar,
- reinterpret_cast<void**>(broker));
- DCHECK(SUCCEEDED(hr) && *broker) << "CoCreating Broker. " << com::LogHr(hr);
+ HRESULT hr = StartCeeeBroker(broker);
if (FAILED(hr) || *broker == NULL)
return com::AlwaysError(hr);
return hr;
« no previous file with comments | « ceee/ie/common/ceee_module_util.cc ('k') | ceee/ie/plugin/bho/executor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698