diff options
Diffstat (limited to 'ceee/common/sidestep_integration.cc')
-rw-r--r-- | ceee/common/sidestep_integration.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ceee/common/sidestep_integration.cc b/ceee/common/sidestep_integration.cc new file mode 100644 index 0000000..71e3f10 --- /dev/null +++ b/ceee/common/sidestep_integration.cc @@ -0,0 +1,20 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. +// +// Integrate SideStep into our project. + +#include "base/logging.h" +#include "ceee/testing/sidestep/integration.h" + +namespace sidestep { + +void AssertImpl(bool assertion_is_true, const char* message) { + DCHECK(assertion_is_true) << message; +} + +void LogImpl(const char* message) { + DLOG(INFO) << message; +} + +} // namespace sidestep |