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

Unified Diff: chrome/common/extensions/api/experimental_record.json

Issue 21854002: Remove experimental.record api completely (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 7 years, 4 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 cf95448eb0039d6b9d50c29a2d1263c5e05c794a..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/api/experimental_record.json
+++ /dev/null
@@ -1,110 +0,0 @@
-[
- {
- "namespace": "experimental.record",
- "description": "The <code>chrome.experimental.record</code> API.",
- "types": [
- {
- "id": "SessionDetails",
- "type": "object",
- "description": "",
- "properties": {
- "extensionPath": {
- "type": "string",
- "optional": true,
- "description":
- "Absolute path to an unpacked extension to run in the subbrowser session."
- }
- }
- },
- {
- "id": "ReplayURLsResult",
- "type": "object",
- "description": "Return value for Replay callback",
- "properties": {
- "runTime": {
- "type": "number",
- "description": "Time in milliseconds to complete all runs."
- },
- "stats": {
- "type": "string",
- "description": "Full multiline dump of output stats, showing one statistic per line, comprising an abbreviated statistic name and its value (e.g. vmsize_f_b= 696164352 bytes for final vm size). This is ugly, and will be changed shortly."
- },
- "errors": {
- "type": "array",
- "items": {"type": "string"},
- "description": "List of errors during replay. Presently, this should only be abnormal browser termination for unexpected reasons."
- }
- }
- }
- ],
- "functions": [
- {
- "name": "captureURLs",
- "description": "",
- "type": "function",
- "parameters": [
- {
- "type": "string",
- "description": "Unique name of the capture.",
- "name": "captureName"
- },
- {
- "type": "array",
- "items": {"type": "string"},
- "description": "URL list to visit during capture.",
- "name": "urls"
- },
- {
- "name": "callback",
- "type": "function",
- "description": "Called when capture has completed.",
- "optional": true,
- "parameters": [
- {
- "type": "array",
- "items": {"type": "string"},
- "name": "errors",
- "description": "List of any URLs that failed to load, one error per textline, along with failure reason (e.g. unknown domain). Also may include general abnormal-exit message if the subbrowser run failed for other reasons."
- }
- ]
- }
- ]
- },
- {
- "name": "replayURLs",
- "description": "",
- "type": "function",
- "parameters": [
- {
- "type": "string",
- "name": "captureName",
- "description": "Unique name of capture. Use to determine cache."
- },
- {
- "type": "integer",
- "name": "repeatCount",
- "minimum": 0,
- "maximum": 100
- },
- {
- "$ref": "SessionDetails",
- "name": "details",
- "optional": true
- },
- {
- "name": "callback",
- "type": "function",
- "optional": true,
- "description": "Called when playback has completed.",
- "parameters": [
- {
- "$ref": "ReplayURLsResult",
- "name": "result"
- }
- ]
- }
- ]
- }
- ]
- }
-]
« no previous file with comments | « chrome/common/extensions/api/api.gyp ('k') | chrome/common/extensions/docs/examples/api/record/page_cycler/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698