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

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

Issue 2575513004: [DevTools] Migrate input domain to new generator. (Closed)
Patch Set: fixed review comments Created 4 years 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": "DOM", 13 "domain": "DOM",
14 "include": ["setFileInputFiles"], 14 "include": ["setFileInputFiles"],
15 "include_events": [], 15 "include_events": [],
16 "include_types": ["NodeId", "RGBA"] 16 "include_types": ["NodeId", "RGBA"]
17 }, 17 },
18 { 18 {
19 "domain": "Emulation", 19 "domain": "Emulation",
20 "include": ["setGeolocationOverride", "clearGeolocationOverride" , "setTouchEmulationEnabled", "canEmulate", "setDeviceMetricsOverride", "clearDe viceMetricsOverride", "setVisibleSize"] 20 "include": ["setGeolocationOverride", "clearGeolocationOverride" , "setTouchEmulationEnabled", "canEmulate", "setDeviceMetricsOverride", "clearDe viceMetricsOverride", "setVisibleSize"]
21 }, 21 },
22 { 22 {
23 "domain": "Input",
24 "exclude": ["dispatchTouchEvent"],
25 "async": ["synthesizePinchGesture", "synthesizeScrollGesture", " synthesizeTapGesture"]
26 },
27 {
23 "domain": "Inspector" 28 "domain": "Inspector"
24 }, 29 },
25 { 30 {
26 "domain": "IO", 31 "domain": "IO",
27 "async": ["read"] 32 "async": ["read"]
28 }, 33 },
29 { 34 {
30 "domain": "Memory", 35 "domain": "Memory",
31 "include": ["setPressureNotificationsSuppressed", "simulatePress ureNotification"] 36 "include": ["setPressureNotificationsSuppressed", "simulatePress ureNotification"]
32 }, 37 },
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 }, 81 },
77 82
78 "lib": { 83 "lib": {
79 "package": "content/browser/devtools/protocol", 84 "package": "content/browser/devtools/protocol",
80 "output": "protocol", 85 "output": "protocol",
81 "string_header": "content/browser/devtools/protocol_string.h", 86 "string_header": "content/browser/devtools/protocol_string.h",
82 "export_macro": "CONTENT_EXPORT", 87 "export_macro": "CONTENT_EXPORT",
83 "export_header": "content/common/content_export.h" 88 "export_header": "content/common/content_export.h"
84 } 89 }
85 } 90 }
OLDNEW
« no previous file with comments | « content/browser/devtools/protocol/input_handler.cc ('k') | content/browser/devtools/render_frame_devtools_agent_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698