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

Unified Diff: chrome/common/extensions/api/experimental.record.json

Issue 10272021: Files generated by the JSON schema compiler are named incorrectly (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor changes Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/experimental.record.json
diff --git a/chrome/common/extensions/api/experimental.record.json b/chrome/common/extensions/api/experimental.record.json
deleted file mode 100644
index fe8c04c2c5f021344be01b52600747c1218a93be..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/experimental.record.json
+++ /dev/null
@@ -1,89 +0,0 @@
-[
- {
- "namespace": "experimental.record",
- "types": [
- {
- "id": "SessionDetails",
- "type": "object",
- "description": "",
- "properties": {
- "extensionPath": {"type": "string", "optional": true, "description": "A path to an extension to run in the session. Should be an unpacked extension."},
- "repeatCount": {"type": "integer", "optional": true, "description": "Number of times to repeat sequence. Defaults to 1."}
- }
- },
- {
- "id": "ReplayURLsResult",
- "type": "object",
- "description": "",
- "properties": {
- "runTime": {"type": "integer", "description": "Time in milliseconds to complete all runs."},
- "stats": {"type": "string", "description": "Full multiline dump of output stats."},
- "errors": {"type": "array", "items": {"type": "string"}, "description": "List of errors during replay."}
- }
- }
- ],
- "functions": [
- {
- "name": "captureURLs",
- "description": "",
- "type": "function",
- "parameters": [
- {
- "type": "array",
- "items": {"type": "string"},
- "name": "urls"
- },
- {
- "type": "string",
- "name": "cacheDirectoryPath"
- },
- {
- "$ref": "SessionDetails",
- "name": "details",
- "optional": true
- },
- {
- "name": "callback",
- "type": "function",
- "description": "Called when capture has completed.",
- "optional": true,
- "parameters": [
- {
- "type": "array",
- "items": {"type": "string"},
- "name": "errors"
- }
- ]
- }
- ]
- },
- {
- "name": "replayURLs",
- "description": "",
- "type": "function",
- "parameters": [
- {
- "type": "array",
- "items": {"type": "string"},
- "name": "urls"
- },
- {
- "type": "string",
- "name": "captureDirectoryPath"
- },
- {
- "$ref": "SessionDetails",
- "name": "details",
- "optional": true
- },
- {
- "name": "callback",
- "type": "function",
- "description": "Called when playback has completed.",
- "parameters": [{"$ref": "ReplayURLsResult", "name": "result"}]
- }
- ]
- }
- ]
- }
-]
« no previous file with comments | « chrome/common/extensions/api/experimental.processes.json ('k') | chrome/common/extensions/api/experimental.rlz.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698