| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_ALLOCATOR_OOM_H | 5 #ifndef BASE_ALLOCATOR_OOM_H |
| 6 #define BASE_ALLOCATOR_OOM_H | 6 #define BASE_ALLOCATOR_OOM_H |
| 7 | 7 |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 | 9 |
| 10 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 } while (0) | 28 } while (0) |
| 29 #else | 29 #else |
| 30 #define OOM_CRASH() \ | 30 #define OOM_CRASH() \ |
| 31 do { \ | 31 do { \ |
| 32 OOM_CRASH_PREVENT_ICF(); \ | 32 OOM_CRASH_PREVENT_ICF(); \ |
| 33 IMMEDIATE_CRASH(); \ | 33 IMMEDIATE_CRASH(); \ |
| 34 } while (0) | 34 } while (0) |
| 35 #endif | 35 #endif |
| 36 | 36 |
| 37 #endif // BASE_ALLOCATOR_OOM_H | 37 #endif // BASE_ALLOCATOR_OOM_H |
| OLD | NEW |