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

Side by Side Diff: chrome/renderer/resources/extensions/json_schema.js

Issue 9657026: Revert 125801 - Implement a module system for the extension bindings JS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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 // 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 20 matching lines...) Expand all
31 // There are also these departures from the JSON Schema proposal: 31 // There are also these departures from the JSON Schema proposal:
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 var chromeHidden = requireNative('chrome_hidden').GetChromeHidden(); 41 (function() {
42 native function GetChromeHidden();
43 var chromeHidden = GetChromeHidden();
42 44
43 function isInstanceOfClass(instance, className) { 45 function isInstanceOfClass(instance, className) {
44 if (!instance) 46 if (!instance)
45 return false; 47 return false;
46 48
47 if (Object.prototype.toString.call(instance) == "[object " + className + "]") 49 if (Object.prototype.toString.call(instance) == "[object " + className + "]")
48 return true; 50 return true;
49 51
50 return isInstanceOfClass(Object.getPrototypeOf(instance), className); 52 return isInstanceOfClass(Object.getPrototypeOf(instance), className);
51 } 53 }
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 message: chromeHidden.JSONSchemaValidator.formatError(key, replacements) 491 message: chromeHidden.JSONSchemaValidator.formatError(key, replacements)
490 }); 492 });
491 }; 493 };
492 494
493 /** 495 /**
494 * Resets errors to an empty list so you can call 'validate' again. 496 * Resets errors to an empty list so you can call 'validate' again.
495 */ 497 */
496 chromeHidden.JSONSchemaValidator.prototype.resetErrors = function() { 498 chromeHidden.JSONSchemaValidator.prototype.resetErrors = function() {
497 this.errors = []; 499 this.errors = [];
498 }; 500 };
501
502 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698