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

Unified Diff: content/browser/devtools/devtools_protocol_constants.cc

Issue 12906011: Detect debugging target crash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 9 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
Index: content/browser/devtools/devtools_protocol_constants.cc
diff --git a/content/browser/devtools/devtools_protocol_constants.cc b/content/browser/devtools/devtools_protocol_constants.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5f7c012554aacef0f4411fb25e527fbc752b23db
--- /dev/null
+++ b/content/browser/devtools/devtools_protocol_constants.cc
@@ -0,0 +1,37 @@
+// Copyright (c) 2013 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.
+
+#include "content/browser/devtools/devtools_protocol_constants.h"
+
+namespace content {
+namespace devtools {
+
+namespace Inspector {
+namespace targetCrashed {
+ const char kName[] = "Inspector.targetCrashed";
+} // targetCrashed
+} // Inspector
+
+namespace DOM {
+namespace setFileInputFiles {
+ const char kName[] = "DOM.setFileInputFiles";
+ const char kParamFiles[] = "files";
+} // setFileInputFiles
+} // DOM
+
+namespace Page {
+namespace handleJavaScriptDialog {
+ const char kName[] = "Page.handleJavaScriptDialog";
+ const char kParamAccept[] = "accept";
+ const char kParamPromptText[] = "promptText";
+} // handleJavaScriptDialog
+namespace navigate {
+ const char kName[] = "Page.navigate";
+ const char kParamUrl[] = "url";
+} // navigate
+} // Page
+
+} // devtools
+} // content
+
« no previous file with comments | « content/browser/devtools/devtools_protocol_constants.h ('k') | content/browser/devtools/render_view_devtools_agent_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698