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

Side by Side Diff: Source/devtools/protocol.json

Issue 23818003: Revert "Allow configuring CPU profiler sampling interval" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 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
« no previous file with comments | « Source/devtools/front_end/SettingsScreen.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "0" }, 2 "version": { "major": "1", "minor": "0" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 3307 matching lines...) Expand 10 before | Expand all | Expand 10 after
3318 } 3318 }
3319 ], 3319 ],
3320 "commands": [ 3320 "commands": [
3321 { 3321 {
3322 "name": "enable" 3322 "name": "enable"
3323 }, 3323 },
3324 { 3324 {
3325 "name": "disable" 3325 "name": "disable"
3326 }, 3326 },
3327 { 3327 {
3328 "name": "setSamplingInterval",
3329 "parameters": [
3330 { "name": "interval", "type": "integer", "description": "New sampling interval in microseconds." }
3331 ],
3332 "description": "Changes CPU profiler sampling interval. Must be called before CPU profiles recording started."
3333 },
3334 {
3335 "name": "start" 3328 "name": "start"
3336 }, 3329 },
3337 { 3330 {
3338 "name": "stop", 3331 "name": "stop",
3339 "returns": [ 3332 "returns": [
3340 { "name": "header", "$ref": "ProfileHeader", "description": "The header of the recorded profile."} 3333 { "name": "header", "$ref": "ProfileHeader", "description": "The header of the recorded profile."}
3341 ] 3334 ]
3342 }, 3335 },
3343 { 3336 {
3344 "name": "getProfileHeaders", 3337 "name": "getProfileHeaders",
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
3939 "parameters": [ 3932 "parameters": [
3940 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 3933 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
3941 ] 3934 ]
3942 }, 3935 },
3943 { 3936 {
3944 "name": "tracingComplete" 3937 "name": "tracingComplete"
3945 } 3938 }
3946 ] 3939 ]
3947 }] 3940 }]
3948 } 3941 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/SettingsScreen.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698