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

Side by Side Diff: content/renderer/renderer_main_platform_delegate_win.cc

Issue 1291553003: Print stack traces in child processes when browser tests failed. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: patch 1295823002 which fixes the console coming up on Win8+ and adds regression tests Created 5 years, 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/renderer/renderer_main_platform_delegate.h" 5 #include "content/renderer/renderer_main_platform_delegate.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 parameters_.sandbox_info->target_services; 102 parameters_.sandbox_info->target_services;
103 103
104 if (target_services) { 104 if (target_services) {
105 // Cause advapi32 to load before the sandbox is turned on. 105 // Cause advapi32 to load before the sandbox is turned on.
106 unsigned int dummy_rand; 106 unsigned int dummy_rand;
107 rand_s(&dummy_rand); 107 rand_s(&dummy_rand);
108 // Warm up language subsystems before the sandbox is turned on. 108 // Warm up language subsystems before the sandbox is turned on.
109 ::GetUserDefaultLangID(); 109 ::GetUserDefaultLangID();
110 ::GetUserDefaultLCID(); 110 ::GetUserDefaultLCID();
111 111
112 #if defined(ADDRESS_SANITIZER)
113 // Bind and leak dbghelp.dll before the token is lowered, otherwise
114 // AddressSanitizer will crash when trying to symbolize a report.
115 if (!LoadLibraryA("dbghelp.dll"))
116 return false;
117 #endif
118
119 target_services->LowerToken(); 112 target_services->LowerToken();
120 return true; 113 return true;
121 } 114 }
122 return false; 115 return false;
123 } 116 }
124 117
125 } // namespace content 118 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698