diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-05 00:43:22 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-05 00:43:22 +0000 |
commit | 8e6b2c1c965662a2ac519423f2d2bcde692e6a3d (patch) | |
tree | ee9f699ebf81fdccfcbb3267c69543c13e80bc66 /chrome/renderer | |
parent | 88e326c6ec37d2c7aed12f9d5f1a5a3242ba1908 (diff) | |
download | chromium_src-8e6b2c1c965662a2ac519423f2d2bcde692e6a3d.zip chromium_src-8e6b2c1c965662a2ac519423f2d2bcde692e6a3d.tar.gz chromium_src-8e6b2c1c965662a2ac519423f2d2bcde692e6a3d.tar.bz2 |
Replace CHECK(false) by LOG(FATAL) where appropriate.
The difference is that the error message doesn't contain
"Assertion failed: false".
Review URL: http://codereview.chromium.org/1970001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46422 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
-rw-r--r-- | chrome/renderer/renderer_main_platform_delegate_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/renderer_main_platform_delegate_win.cc b/chrome/renderer/renderer_main_platform_delegate_win.cc index 9b3ea65..d5cca59 100644 --- a/chrome/renderer/renderer_main_platform_delegate_win.cc +++ b/chrome/renderer/renderer_main_platform_delegate_win.cc @@ -48,7 +48,7 @@ void EnableThemeSupportForRenderer(bool no_sandbox) { if (!current || !::SetProcessWindowStation(current)) { // We failed to switch back to the secure window station. This might // confuse the renderer enough that we should kill it now. - CHECK(false) << "Failed to restore alternate window station"; + LOG(FATAL) << "Failed to restore alternate window station"; } if (!::CloseWindowStation(winsta0)) { |