| Index: third_party/WebKit/public/platform/WebCommon.h
|
| diff --git a/third_party/WebKit/public/platform/WebCommon.h b/third_party/WebKit/public/platform/WebCommon.h
|
| index 9d0a40af61826fe6ff035cb73b18b9cb2893a29f..d79078589fdd31eeab1b110b293f5f3e3e02cfd4 100644
|
| --- a/third_party/WebKit/public/platform/WebCommon.h
|
| +++ b/third_party/WebKit/public/platform/WebCommon.h
|
| @@ -93,23 +93,6 @@ typedef unsigned short WebUChar;
|
| // Latin-1 character type
|
| typedef unsigned char WebLChar;
|
|
|
| -// -----------------------------------------------------------------------------
|
| -// Assertions
|
| -
|
| -BLINK_COMMON_EXPORT void failedAssertion(const char* file, int line, const char* function, const char* assertion);
|
| -
|
| } // namespace blink
|
|
|
| -// Ideally, only use inside the public directory but outside of INSIDE_BLINK blocks. (Otherwise use WTF's ASSERT.)
|
| -#if defined(NDEBUG)
|
| -#define BLINK_ASSERT(assertion) ((void)0)
|
| -#else
|
| -#define BLINK_ASSERT(assertion) do { \
|
| - if (!(assertion)) \
|
| - failedAssertion(__FILE__, __LINE__, __FUNCTION__, #assertion); \
|
| -} while (0)
|
| -#endif
|
| -
|
| -#define BLINK_ASSERT_NOT_REACHED() BLINK_ASSERT(0)
|
| -
|
| #endif
|
|
|