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

Side by Side Diff: extensions/common/api/test.json

Issue 2850793005: Remove command line/field trial support and configs for Isolate Extensions. (Closed)
Patch Set: Remove more cases of "isolate.*extension" Created 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [ 5 [
6 { 6 {
7 "namespace": "test", 7 "namespace": "test",
8 "description": "none", 8 "description": "none",
9 "functions": [ 9 "functions": [
10 { 10 {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 }, 51 },
52 "testDataDirectory": { 52 "testDataDirectory": {
53 "type": "string", 53 "type": "string",
54 "description": "file:/// URL for the API test data directory ." 54 "description": "file:/// URL for the API test data directory ."
55 }, 55 },
56 "testWebSocketPort": { 56 "testWebSocketPort": {
57 "type": "integer", 57 "type": "integer",
58 "description": "The port on which the test WebSocket server is listening.", 58 "description": "The port on which the test WebSocket server is listening.",
59 "minimum": 0, 59 "minimum": 0,
60 "maximum": 65535 60 "maximum": 65535
61 },
62 "isolateExtensions": {
63 "type": "boolean",
64 "description": "Whether or not extensions are running in sit e isolation mode."
65 } 61 }
66 } 62 }
67 } 63 }
68 ] 64 ]
69 } 65 }
70 ] 66 ]
71 }, 67 },
72 { 68 {
73 "name": "notifyFail", 69 "name": "notifyFail",
74 "type": "function", 70 "type": "function",
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 "properties": { 412 "properties": {
417 "data": { "type": "string", "description": "Additional information ." }, 413 "data": { "type": "string", "description": "Additional information ." },
418 "lastMessage": { "type": "boolean", "description": "True if this w as the last message for this test" } 414 "lastMessage": { "type": "boolean", "description": "True if this w as the last message for this test" }
419 } 415 }
420 } 416 }
421 ] 417 ]
422 } 418 }
423 ] 419 ]
424 } 420 }
425 ] 421 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698