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

Unified Diff: components/nacl/loader/nacl_main_platform_delegate_win.cc

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years 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: components/nacl/loader/nacl_main_platform_delegate_win.cc
diff --git a/components/nacl/loader/nacl_main_platform_delegate_win.cc b/components/nacl/loader/nacl_main_platform_delegate_win.cc
index c0caa5e2c2d2c5295572de8d7306dd063280b4c9..6b20a08f5a1de1b745ce5cb2339d94d3a4d7c080 100644
--- a/components/nacl/loader/nacl_main_platform_delegate_win.cc
+++ b/components/nacl/loader/nacl_main_platform_delegate_win.cc
@@ -13,7 +13,8 @@ void NaClMainPlatformDelegate::EnableSandbox(
sandbox::TargetServices* target_services =
parameters.sandbox_info->target_services;
- CHECK(target_services) << "NaCl-Win EnableSandbox: No Target Services!";
+ // NaCl-Win EnableSandbox: No Target Services!
+ CHECK(target_services);
// Cause advapi32 to load before the sandbox is turned on.
unsigned int dummy_rand;
rand_s(&dummy_rand);

Powered by Google App Engine
This is Rietveld 408576698