| OLD | NEW |
| 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 // 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 */ | 443 */ |
| 445 chromeHidden.JSONSchemaValidator.prototype.addError = function( | 444 chromeHidden.JSONSchemaValidator.prototype.addError = function( |
| 446 path, key, replacements) { | 445 path, key, replacements) { |
| 447 this.errors.push({ | 446 this.errors.push({ |
| 448 path: path, | 447 path: path, |
| 449 message: chromeHidden.JSONSchemaValidator.formatError(key, replacements) | 448 message: chromeHidden.JSONSchemaValidator.formatError(key, replacements) |
| 450 }); | 449 }); |
| 451 }; | 450 }; |
| 452 | 451 |
| 453 })(); | 452 })(); |
| OLD | NEW |