Chromium Code Reviews| Index: chrome_frame/crash_reporting/crash_dll.h |
| =================================================================== |
| --- chrome_frame/crash_reporting/crash_dll.h (revision 0) |
| +++ chrome_frame/crash_reporting/crash_dll.h (revision 0) |
| @@ -0,0 +1,13 @@ |
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| +#ifndef CHROME_FRAME_CRASH_REPORT_CRASH_DLL_H_ |
| +#define CHROME_FRAME_CRASH_REPORT_CRASH_DLL_H_ |
| + |
| +// Set either of these environment variables to |
| +// crash at load or unload time, respectively. |
| +static const wchar_t* kCrashOnLoadMode = L"CRASH_DLL_CRASH_ON_LOAD"; |
|
amit
2010/03/11 16:08:51
nit: declspec(SELECTANY) or definitions in .cc?
Sigurður Ásgeirsson
2010/03/11 16:16:35
The static declaration serves the same purpose as
|
| +static const wchar_t* kCrashOnUnloadMode = L"CRASH_DLL_CRASH_ON_UNLOAD"; |
| +static const DWORD kCrashAddress = 0x42; |
| + |
| +#endif // CHROME_FRAME_CRASH_REPORT_CRASH_DLL_H_ |
| Property changes on: chrome_frame\crash_reporting\crash_dll.h |
| ___________________________________________________________________ |
| Added: svn:eol-style |
| + LF |