diff options
author | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-13 01:41:38 +0900 |
---|---|---|
committer | Jinkun Jang <jinkun.jang@samsung.com> | 2013-03-13 01:41:38 +0900 |
commit | 8a6ea078957a71e285dcf1db46aa1e5d26dfcb3f (patch) | |
tree | ebbbe8a8120031a0a1340161064b1e1a2b2bc2ef /log.h | |
parent | f0b7f23011002ef4a1e455be07c6b298cb5cef94 (diff) | |
download | chromium-8a6ea078957a71e285dcf1db46aa1e5d26dfcb3f.tar.gz chromium-8a6ea078957a71e285dcf1db46aa1e5d26dfcb3f.tar.bz2 chromium-8a6ea078957a71e285dcf1db46aa1e5d26dfcb3f.zip |
Tizen 2.1 base
Diffstat (limited to 'log.h')
-rw-r--r-- | log.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/log.h b/log.h new file mode 100644 index 000000000000..90f87eb33876 --- /dev/null +++ b/log.h @@ -0,0 +1,26 @@ +// Copyright (c) 2011 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. + +#ifndef BASE_LOGGING_H_ +#define BASE_LOGGING_H_ +#pragma once + +//namespace logging { +#define DCHECK(x) if (!(x)) std::cout << "Check failed" +#define CHECK(x) if (!(x)) std::cout << "Check failed" +#define NOTREACHED() std::cout << "Not reached" +#define DCHECK_EQ(x, y) if ((x) != (y)) std::cout << "Check failed" +#define DCHECK_LE(x, y) if ((x) > (y)) std::cout << "Check failed" +#define DCHECK_GE(x, y) if ((x) < (y)) std::cout << "Check failed" +#define DCHECK_NE(x, y) if ((x) == (y)) std::cout << "Check failed" +#define CHECK_NE(x, y) if ((x) == (y)) std::cout << "Check failed" +//#define MAX(x,y) ((x) > (y) ? (x) : (y)) + +#ifndef WARN_UNUSED_RESULT +//#define WARN_UNUSED_RESULT +#endif + +//} // namespace base + +#endif // BASE_LOGGING_H_ |