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

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

Issue 11087027: WebSocket test server migration on ExtensionApiTest.WebSocket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add default value for testWebSocketPort Created 8 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "nodoc": true, 8 "nodoc": true,
9 "types": [], 9 "types": [],
10 "functions": [ 10 "functions": [
(...skipping 17 matching lines...) Expand all
28 "type": "integer", 28 "type": "integer",
29 "description": "The port on which the test server is lis tening.", 29 "description": "The port on which the test server is lis tening.",
30 "minimum": 1024, 30 "minimum": 1024,
31 "maximum": 65535 31 "maximum": 65535
32 } 32 }
33 } 33 }
34 }, 34 },
35 "testDataDirectory": { 35 "testDataDirectory": {
36 "type": "string", 36 "type": "string",
37 "description": "file:/// URL for the API test data directory ." 37 "description": "file:/// URL for the API test data directory ."
38 },
39 "testWebSocketPort": {
40 "type": "integer",
41 "description": "The port on which the test WebSocket server is listening.",
42 "minimum": 0,
43 "maximum": 65535
38 } 44 }
39 } 45 }
40 } 46 }
41 ] 47 ]
42 } 48 }
43 ] 49 ]
44 }, 50 },
45 { 51 {
46 "name": "notifyFail", 52 "name": "notifyFail",
47 "unprivileged": true, 53 "unprivileged": true,
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "properties": { 119 "properties": {
114 "data": { "type": "string", "description": "Additional information ." }, 120 "data": { "type": "string", "description": "Additional information ." },
115 "lastMessage": { "type": "boolean", "description": "True if this w as the last message for this test" } 121 "lastMessage": { "type": "boolean", "description": "True if this w as the last message for this test" }
116 } 122 }
117 } 123 }
118 ] 124 ]
119 } 125 }
120 ] 126 ]
121 } 127 }
122 ] 128 ]
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_websocket_apitest.cc ('k') | chrome/test/data/extensions/api_test/websocket/test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698