OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // NOTE: If you change this file you need to touch renderer_resources.grd to | 6 // NOTE: If you change this file you need to touch renderer_resources.grd to |
7 // have your change take effect. | 7 // have your change take effect. |
8 // ----------------------------------------------------------------------------- | 8 // ----------------------------------------------------------------------------- |
9 | 9 |
10 //============================================================================== | 10 //============================================================================== |
(...skipping 21 matching lines...) Expand all Loading... |
32 // - function and undefined types are supported | 32 // - function and undefined types are supported |
33 // - null counts as 'unspecified' for optional values | 33 // - null counts as 'unspecified' for optional values |
34 // - added the 'choices' property, to allow specifying a list of possible types | 34 // - added the 'choices' property, to allow specifying a list of possible types |
35 // for a value | 35 // for a value |
36 // - by default an "object" typed schema does not allow additional properties. | 36 // - by default an "object" typed schema does not allow additional properties. |
37 // if present, "additionalProperties" is to be a schema against which all | 37 // if present, "additionalProperties" is to be a schema against which all |
38 // additional properties will be validated. | 38 // additional properties will be validated. |
39 //============================================================================== | 39 //============================================================================== |
40 | 40 |
41 (function() { | 41 (function() { |
42 native function GetChromeHidden(); | 42 var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); |
43 var chromeHidden = GetChromeHidden(); | |
44 | 43 |
45 /** | 44 /** |
46 * Validates an instance against a schema and accumulates errors. Usage: | 45 * Validates an instance against a schema and accumulates errors. Usage: |
47 * | 46 * |
48 * var validator = new chromeHidden.JSONSchemaValidator(); | 47 * var validator = new chromeHidden.JSONSchemaValidator(); |
49 * validator.validate(inst, schema); | 48 * validator.validate(inst, schema); |
50 * if (validator.errors.length == 0) | 49 * if (validator.errors.length == 0) |
51 * console.log("Valid!"); | 50 * console.log("Valid!"); |
52 * else | 51 * else |
53 * console.log(validator.errors); | 52 * console.log(validator.errors); |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 */ | 441 */ |
443 chromeHidden.JSONSchemaValidator.prototype.addError = function( | 442 chromeHidden.JSONSchemaValidator.prototype.addError = function( |
444 path, key, replacements) { | 443 path, key, replacements) { |
445 this.errors.push({ | 444 this.errors.push({ |
446 path: path, | 445 path: path, |
447 message: chromeHidden.JSONSchemaValidator.formatError(key, replacements) | 446 message: chromeHidden.JSONSchemaValidator.formatError(key, replacements) |
448 }); | 447 }); |
449 }; | 448 }; |
450 | 449 |
451 })(); | 450 })(); |
OLD | NEW |