| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "components/crash/content/app/crashpad.h" | 5 #include "components/crash/content/app/crashpad.h" |
| 6 | 6 |
| 7 #include "base/debug/crash_logging.h" |
| 7 #include "base/environment.h" | 8 #include "base/environment.h" |
| 8 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
| 9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/numerics/safe_conversions.h" | 11 #include "base/numerics/safe_conversions.h" |
| 11 #include "base/path_service.h" | 12 #include "base/path_service.h" |
| 12 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 13 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
| 14 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
| 15 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 16 #include "components/crash/content/app/crash_reporter_client.h" | 17 #include "components/crash/content/app/crash_reporter_client.h" |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 reinterpret_cast<ExceptionHandlerRecord*>(start); | 248 reinterpret_cast<ExceptionHandlerRecord*>(start); |
| 248 | 249 |
| 249 CHECK(RtlDeleteFunctionTable(&record->runtime_function)); | 250 CHECK(RtlDeleteFunctionTable(&record->runtime_function)); |
| 250 } | 251 } |
| 251 #endif // ARCH_CPU_X86_64 | 252 #endif // ARCH_CPU_X86_64 |
| 252 | 253 |
| 253 } // extern "C" | 254 } // extern "C" |
| 254 | 255 |
| 255 } // namespace internal | 256 } // namespace internal |
| 256 } // namespace crash_reporter | 257 } // namespace crash_reporter |
| OLD | NEW |