| 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_REPORT_CRASH_DLL_H_ | 4 |
| 5 #define CHROME_FRAME_CRASH_REPORT_CRASH_DLL_H_ | 5 #ifndef CHROME_FRAME_CRASH_REPORTING_CRASH_DLL_H_ |
| 6 #define CHROME_FRAME_CRASH_REPORTING_CRASH_DLL_H_ |
| 7 #pragma once |
| 6 | 8 |
| 7 // Set either of these environment variables to | 9 // Set either of these environment variables to |
| 8 // crash at load or unload time, respectively. | 10 // crash at load or unload time, respectively. |
| 9 static const wchar_t* kCrashDllName = L"crash_dll.dll"; | 11 static const wchar_t kCrashDllName[] = L"crash_dll.dll"; |
| 10 static const wchar_t* kCrashOnLoadMode = L"CRASH_DLL_CRASH_ON_LOAD"; | 12 static const wchar_t kCrashOnLoadMode[] = L"CRASH_DLL_CRASH_ON_LOAD"; |
| 11 static const wchar_t* kCrashOnUnloadMode = L"CRASH_DLL_CRASH_ON_UNLOAD"; | 13 static const wchar_t kCrashOnUnloadMode[] = L"CRASH_DLL_CRASH_ON_UNLOAD"; |
| 12 static const DWORD kCrashAddress = 0x42; | 14 static const DWORD kCrashAddress = 0x42; |
| 13 | 15 |
| 14 #endif // CHROME_FRAME_CRASH_REPORT_CRASH_DLL_H_ | 16 #endif // CHROME_FRAME_CRASH_REPORTING_CRASH_DLL_H_ |
| OLD | NEW |