| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_FRAME_CRASH_REPORTING_VEH_TEST_H_ | 4 #ifndef CHROME_FRAME_CRASH_REPORTING_VEH_TEST_H_ |
| 5 #define CHROME_FRAME_CRASH_REPORTING_VEH_TEST_H_ | 5 #define CHROME_FRAME_CRASH_REPORTING_VEH_TEST_H_ |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 | 9 |
| 10 #ifndef EXCEPTION_CHAIN_END | 10 #ifndef EXCEPTION_CHAIN_END |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 for (; p; ++count_) { | 70 for (; p; ++count_) { |
| 71 CHECK(count_ < arraysize(stack_)); | 71 CHECK(count_ < arraysize(stack_)); |
| 72 stack_[count_] = p; | 72 stack_[count_] = p; |
| 73 p = va_arg(vl, const void*); | 73 p = va_arg(vl, const void*); |
| 74 } | 74 } |
| 75 } | 75 } |
| 76 const void* stack_[64]; | 76 const void* stack_[64]; |
| 77 WORD count_; | 77 WORD count_; |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 #endif // CHROME_FRAME_CRASH_REPORTING_VEH_TEST_H_ | 80 #endif // CHROME_FRAME_CRASH_REPORTING_VEH_TEST_H_ |
| OLD | NEW |