Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: components/crash/content/app/crashpad.cc

Issue 1183633003: cross gn Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: slightly smaller diff Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome_elf/BUILD.gn ('k') | components/crash/content/app/crashpad_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <stddef.h> 7 #include <stddef.h>
8 #include <string.h> 8 #include <string.h>
9 9
10 #if BUILDFLAG(ENABLE_KASKO) 10 #if BUILDFLAG(ENABLE_KASKO)
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 std::string message = base::StringPrintf("%s:%d: %s", file, line, 93 std::string message = base::StringPrintf("%s:%d: %s", file, line,
94 string.c_str() + message_start); 94 string.c_str() + message_start);
95 SetCrashKeyValue("LOG_FATAL", message); 95 SetCrashKeyValue("LOG_FATAL", message);
96 96
97 // Rather than including the code to force the crash here, allow the caller to 97 // Rather than including the code to force the crash here, allow the caller to
98 // do it. 98 // do it.
99 return false; 99 return false;
100 } 100 }
101 101
102 void DumpWithoutCrashing() { 102 void DumpWithoutCrashing() {
103 CRASHPAD_SIMULATE_CRASH(); 103 //CRASHPAD_SIMULATE_CRASH();
104 } 104 }
105 105
106 #if BUILDFLAG(ENABLE_KASKO) 106 #if BUILDFLAG(ENABLE_KASKO)
107 // TODO(ananta) 107 // TODO(ananta)
108 // We cannot depend on functionality in base which pulls in dependencies on 108 // We cannot depend on functionality in base which pulls in dependencies on
109 // user32 directly or indirectly. The GetLoadedModulesSnapshot is a copy of the 109 // user32 directly or indirectly. The GetLoadedModulesSnapshot is a copy of the
110 // function in base/win/win_util.cc. Depending on the base function pulls in 110 // function in base/win/win_util.cc. Depending on the base function pulls in
111 // dependencies on user32 due to other functionality in win_util.cc. This 111 // dependencies on user32 due to other functionality in win_util.cc. This
112 // function should be removed when KASKO is removed. 112 // function should be removed when KASKO is removed.
113 bool GetLoadedModulesSnapshot(HANDLE process, std::vector<HMODULE>* snapshot) { 113 bool GetLoadedModulesSnapshot(HANDLE process, std::vector<HMODULE>* snapshot) {
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 base::UTF16ToUTF8(value)); 475 base::UTF16ToUTF8(value));
476 } 476 }
477 477
478 void __declspec(dllexport) __cdecl ClearCrashKeyValueImpl(const wchar_t* key) { 478 void __declspec(dllexport) __cdecl ClearCrashKeyValueImpl(const wchar_t* key) {
479 crash_reporter::ClearCrashKey(base::UTF16ToUTF8(key)); 479 crash_reporter::ClearCrashKey(base::UTF16ToUTF8(key));
480 } 480 }
481 481
482 } // extern "C" 482 } // extern "C"
483 483
484 #endif // OS_WIN 484 #endif // OS_WIN
OLDNEW
« no previous file with comments | « chrome_elf/BUILD.gn ('k') | components/crash/content/app/crashpad_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698