| Index: mojo/public/cpp/bindings/lib/connector.cc
|
| diff --git a/mojo/public/cpp/bindings/lib/connector.cc b/mojo/public/cpp/bindings/lib/connector.cc
|
| index 64524111eb2d36aabac90f28cb6e3c27cab5d2e8..d9da5faeb530027c2b98a826486db64769d732dc 100644
|
| --- a/mojo/public/cpp/bindings/lib/connector.cc
|
| +++ b/mojo/public/cpp/bindings/lib/connector.cc
|
| @@ -148,7 +148,8 @@ bool Connector::Accept(Message* message) {
|
| // TODO(vtl): I wonder if this should be a |DCHECK()|. (But, until
|
| // crbug.com/389666, etc. are resolved, this will make tests fail quickly
|
| // rather than hanging.)
|
| - CHECK(false) << "Race condition or other bug detected";
|
| + // Race condition or other bug detected
|
| + CHECK(false);
|
| return false;
|
| default:
|
| // This particular write was rejected, presumably because of bad input.
|
|
|