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

Unified Diff: Source/devtools/protocol.json

Issue 104433004: Enable VM service inside Dartium Renderer processes (Closed) Base URL: svn://svn.chromium.org/multivm/branches/1650/blink
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/protocol.json
diff --git a/Source/devtools/protocol.json b/Source/devtools/protocol.json
index 8f030f7ab8c8b838ebe6318d9424d6832e138a6f..5db161b9b0f820bac3b3bc2ad7a49bf0a8818aa8 100644
--- a/Source/devtools/protocol.json
+++ b/Source/devtools/protocol.json
@@ -1106,7 +1106,7 @@
{ "name": "cacheDisabled", "type": "boolean", "description": "Cache disabled state." }
],
"description": "Toggles ignoring cache for each request. If <code>true</code>, cache will not be used."
- },
Jacob 2013/12/05 22:59:58 remove whitespace diff here
Cutch 2013/12/05 23:09:37 Done.
+ },
{
"name": "loadResourceForFrontend",
"async": true,
@@ -3255,7 +3255,7 @@
{ "name": "startColumn", "type": "integer", "description": "Column offset of the script within the resource with given URL." },
{ "name": "endLine", "type": "integer", "description": "Last line of the script." },
{ "name": "endColumn", "type": "integer", "description": "Length of the last line of the script." },
- { "name": "isContentScript", "type": "boolean", "optional": true, "description": "Determines whether this script is a user extension script." },
+ { "name": "isContentScript", "type": "boolean", "optional": true, "description": "Determines whether this script is a user extension script." },
Jacob 2013/12/05 22:59:58 remove whitespace only diff here.
Cutch 2013/12/05 23:09:37 Done.
{ "name": "sourceMapURL", "type": "string", "optional": true, "description": "URL of source map associated with script (if any)." },
{ "name": "hasSourceURL", "type": "boolean", "optional": true, "description": "True, if this script has sourceURL.", "hidden": true },
{ "name": "language", "type": "string", "optional": true, "description": "Programming language of the script" },
@@ -4019,6 +4019,28 @@
]
},
{
+ "domain": "Dart",
+ "types": [],
+ "commands": [
+ {
+ "name": "observatoryQuery",
+ "parameters": [
+ { "name": "id", "type": "string" },
+ { "name": "query", "type": "string" }
+ ]
+ }
+ ],
+ "events": [
+ {
+ "name": "observatoryData",
+ "parameters": [
+ { "name": "id", "type": "string" },
+ { "name": "data", "type": "string" }
+ ]
+ }
+ ]
+ },
+ {
"domain": "Tracing",
"hidden": true,
"commands": [
« Source/core/inspector/InspectorDartAgent.cpp ('K') | « Source/devtools/front_end/inspector.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698