Index: content/common/content_switches.cc |
=================================================================== |
--- content/common/content_switches.cc (revision 88440) |
+++ content/common/content_switches.cc (working copy) |
@@ -4,6 +4,8 @@ |
#include "content/common/content_switches.h" |
+#include "base/command_line.h" |
jam
2011/06/09 21:44:29
ditto
Cris Neckar
2011/06/09 22:17:16
Done.
|
+ |
namespace switches { |
// By default, file:// URIs cannot read other file:// URIs. This is an |
@@ -407,6 +409,15 @@ |
// Causes the process to run as a renderer zygote. |
const char kZygoteProcess[] = "zygote"; |
+#if defined(OS_WIN) |
+// Enumerates and prints a child process' most dangerous handles when it |
+// is terminated. |
+const char kAuditHandles[] = "enable-handle-auditing"; |
+ |
+// The same as kAuditHandles except all handles are enumerated. |
+const char kAuditAllHandles[] = "enable-handle-auditing-all"; |
+#endif |
+ |
#if defined(ENABLE_P2P_APIS) |
// Enable Pepper and JavaScript P2P API. |
const char kEnableP2PApi[] = "enable-p2papi"; |