summaryrefslogtreecommitdiffstats
path: root/ceee/ie/plugin/bho/executor.cc
diff options
context:
space:
mode:
authormotek@chromium.org <motek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 20:49:44 +0000
committermotek@chromium.org <motek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 20:49:44 +0000
commit366c07dfbd9211fa225a98a01e5247558e7a0b50 (patch)
tree47af2f3b6f947022533e623b64520e4153aa8016 /ceee/ie/plugin/bho/executor.cc
parent0917cf354c488db47f16145285b9e8c4ddb5384d (diff)
downloadchromium_src-366c07dfbd9211fa225a98a01e5247558e7a0b50.zip
chromium_src-366c07dfbd9211fa225a98a01e5247558e7a0b50.tar.gz
chromium_src-366c07dfbd9211fa225a98a01e5247558e7a0b50.tar.bz2
These DCHECKs are sort-of expected in a fast startup sequence.
They are still errors, but DCHECKs make use of automated testing tools against the debug build virtually impossible. This will be followed-up. BUG=66863 BUG=66864 TEST=none Review URL: http://codereview.chromium.org/5751001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69170 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ceee/ie/plugin/bho/executor.cc')
-rw-r--r--ceee/ie/plugin/bho/executor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ceee/ie/plugin/bho/executor.cc b/ceee/ie/plugin/bho/executor.cc
index f8dd815..00571d4 100644
--- a/ceee/ie/plugin/bho/executor.cc
+++ b/ceee/ie/plugin/bho/executor.cc
@@ -880,7 +880,7 @@ STDMETHODIMP CeeeExecutor::InsertCode(BSTR code, BSTR file, BOOL all_frames,
hr = frame_handler_host->InsertCode(code, file, all_frames, type);
if (FAILED(hr)) {
- NOTREACHED() << "Failed to insert code. " << com::LogHr(hr);
+ LOG(ERROR) << "Failed to insert code. " << com::LogHr(hr);
return hr;
}