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

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

Issue 2734123004: add a new set of commands to resize and position windows (Closed)
Patch Set: add methods to UI domain Created 3 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
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",
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 { 75 {
76 "domain": "Target" 76 "domain": "Target"
77 }, 77 },
78 { 78 {
79 "domain": "Tethering", 79 "domain": "Tethering",
80 "async": ["bind", "unbind"] 80 "async": ["bind", "unbind"]
81 }, 81 },
82 { 82 {
83 "domain": "Tracing", 83 "domain": "Tracing",
84 "async": ["start", "end", "getCategories", "requestMemoryDump"] 84 "async": ["start", "end", "getCategories", "requestMemoryDump"]
85 },
86 {
87 "domain": "UI"
85 } 88 }
86 ] 89 ]
87 }, 90 },
88 91
89 "lib": { 92 "lib": {
90 "package": "content/browser/devtools/protocol", 93 "package": "content/browser/devtools/protocol",
91 "output": "protocol", 94 "output": "protocol",
92 "string_header": "content/browser/devtools/protocol_string.h", 95 "string_header": "content/browser/devtools/protocol_string.h",
93 "export_macro": "CONTENT_EXPORT", 96 "export_macro": "CONTENT_EXPORT",
94 "export_header": "content/common/content_export.h" 97 "export_header": "content/common/content_export.h"
95 } 98 }
96 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698