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

Side by Side Diff: content/browser/devtools/protocol_config.json

Issue 2500093002: [DevTools] Move IO and Tracing to new generator. (Closed)
Patch Set: roll Created 4 years, 1 month 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
OLDNEW
1 { 1 {
2 "use_snake_file_names": true, 2 "use_snake_file_names": true,
3 "use_title_case_methods": true, 3 "use_title_case_methods": true,
4 4
5 "protocol": { 5 "protocol": {
6 "package": "content/browser/devtools/protocol", 6 "package": "content/browser/devtools/protocol",
7 "output": "protocol", 7 "output": "protocol",
8 "namespace": ["content", "protocol"], 8 "namespace": ["content", "protocol"],
9 "export_macro": "CONTENT_EXPORT", 9 "export_macro": "CONTENT_EXPORT",
10 "export_header": "content/common/content_export.h", 10 "export_header": "content/common/content_export.h",
11 "options": [ 11 "options": [
12 { 12 {
13 "domain": "IO", 13 "domain": "IO",
14 "async": ["read"] 14 "async": ["read"]
15 }, 15 },
16 { 16 {
17 "domain": "Tracing", 17 "domain": "Tracing",
18 "async": ["start", "end"] 18 "async": ["start", "end", "getCategories", "requestMemoryDump"]
19 },
20 {
21 "domain": "IO",
22 "async": ["read"]
19 } 23 }
20 ] 24 ]
21 }, 25 },
22 26
23 "lib": { 27 "lib": {
24 "package": "content/browser/devtools/protocol", 28 "package": "content/browser/devtools/protocol",
25 "output": "protocol", 29 "output": "protocol",
26 "string_header": "content/browser/devtools/protocol_string.h", 30 "string_header": "content/browser/devtools/protocol_string.h",
27 "export_macro": "CONTENT_EXPORT", 31 "export_macro": "CONTENT_EXPORT",
28 "export_header": "content/common/content_export.h" 32 "export_header": "content/common/content_export.h"
29 } 33 }
30 } 34 }
OLDNEW
« no previous file with comments | « content/browser/devtools/protocol/tracing_handler_unittest.cc ('k') | content/browser/devtools/protocol_string.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698