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

Unified Diff: webkit/support/webkit_support.cc

Issue 3049003: Enable stack dumps in DRT. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/webkit/
Patch Set: 80 Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/support/webkit_support.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/webkit_support.cc
diff --git a/webkit/support/webkit_support.cc b/webkit/support/webkit_support.cc
index d44d390263b43ad0d9c3ee1258980c6a76feb3eb..33741818a7949b30bdfbfb55048db2439cfccf66 100644
--- a/webkit/support/webkit_support.cc
+++ b/webkit/support/webkit_support.cc
@@ -117,6 +117,7 @@ namespace webkit_support {
static TestEnvironment* test_environment;
static void SetUpTestEnvironmentImpl(bool unit_test_mode) {
+ base::EnableInProcessStackDumping();
base::EnableTerminationOnHeapCorruption();
// Initialize the singleton CommandLine with fixed values. Some code refer to
@@ -398,7 +399,8 @@ WebURL GetDevToolsPathAsURL() {
DCHECK(false);
return WebURL();
}
- FilePath devToolsPath = dirExe.AppendASCII("resources/inspector/devtools.html");
+ FilePath devToolsPath = dirExe.AppendASCII(
+ "resources/inspector/devtools.html");
return net::FilePathToFileURL(devToolsPath);
}
« no previous file with comments | « no previous file | webkit/support/webkit_support.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698