| OLD | NEW |
| 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 define([ | 5 define([ |
| 6 "console", | 6 "console", |
| 7 "file", | 7 "file", |
| 8 "gin/test/expect", | 8 "gin/test/expect", |
| 9 "mojo/public/interfaces/bindings/tests/validation_test_interfaces.mojom", | 9 "mojo/public/interfaces/bindings/tests/validation_test_interfaces.mojom", |
| 10 "mojo/public/js/bindings", | 10 "mojo/public/js/bindings", |
| 11 "mojo/public/js/buffer", | 11 "mojo/public/js/buffer", |
| 12 "mojo/public/js/codec", | 12 "mojo/public/js/codec", |
| 13 "mojo/public/js/core", | 13 "mojo/public/js/core", |
| 14 "mojo/public/js/test/validation_test_input_parser", | 14 "mojo/public/js/tests/validation_test_input_parser", |
| 15 "mojo/public/js/validator", | 15 "mojo/public/js/validator", |
| 16 ], function(console, | 16 ], function(console, |
| 17 file, | 17 file, |
| 18 expect, | 18 expect, |
| 19 testInterface, | 19 testInterface, |
| 20 bindings, | 20 bindings, |
| 21 buffer, | 21 buffer, |
| 22 codec, | 22 codec, |
| 23 core, | 23 core, |
| 24 parser, | 24 parser, |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 testConformanceMessageValidation(); | 329 testConformanceMessageValidation(); |
| 330 testBoundsCheckMessageValidation(); | 330 testBoundsCheckMessageValidation(); |
| 331 testResponseConformanceMessageValidation(); | 331 testResponseConformanceMessageValidation(); |
| 332 testResponseBoundsCheckMessageValidation(); | 332 testResponseBoundsCheckMessageValidation(); |
| 333 testIntegratedMessageHeaderValidation(); | 333 testIntegratedMessageHeaderValidation(); |
| 334 testIntegratedResponseMessageValidation(); | 334 testIntegratedResponseMessageValidation(); |
| 335 testIntegratedRequestMessageValidation(); | 335 testIntegratedRequestMessageValidation(); |
| 336 | 336 |
| 337 this.result = "PASS"; | 337 this.result = "PASS"; |
| 338 }); | 338 }); |
| OLD | NEW |