| OLD | NEW |
| (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 |
| OLD | NEW |