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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/browser/devtools/devtools_protocol_constants.h"
6
7 namespace content {
8 namespace devtools {
9
10 namespace Inspector {
11 namespace targetCrashed {
12 const char kName[] = "Inspector.targetCrashed";
13 } // targetCrashed
14 } // Inspector
15
16 namespace DOM {
17 namespace setFileInputFiles {
18 const char kName[] = "DOM.setFileInputFiles";
19 const char kParamFiles[] = "files";
20 } // setFileInputFiles
21 } // DOM
22
23 namespace Page {
24 namespace handleJavaScriptDialog {
25 const char kName[] = "Page.handleJavaScriptDialog";
26 const char kParamAccept[] = "accept";
27 const char kParamPromptText[] = "promptText";
28 } // handleJavaScriptDialog
29 namespace navigate {
30 const char kName[] = "Page.navigate";
31 const char kParamUrl[] = "url";
32 } // navigate
33 } // Page
34
35 } // devtools
36 } // content
37
OLDNEW
« 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