| 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 "use strict"; | 5 "use strict"; |
| 6 | 6 |
| 7 // This list must be in sync with the enum in ExceptionCode.h. The order matter
s. | 7 // This list must be in sync with the enum in ExceptionCode.h. The order matter
s. |
| 8 var domExceptions = [ | 8 var domExceptions = [ |
| 9 "IndexSizeError", | 9 "IndexSizeError", |
| 10 "HierarchyRequestError", | 10 "HierarchyRequestError", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 this.type = "DOMExceptionInPrivateScript"; | 81 this.type = "DOMExceptionInPrivateScript"; |
| 82 } | 82 } |
| 83 | 83 |
| 84 function installClass(className, implementation) | 84 function installClass(className, implementation) |
| 85 { | 85 { |
| 86 installedClasses[className] = implementation(window); | 86 installedClasses[className] = implementation(window); |
| 87 } | 87 } |
| 88 | 88 |
| 89 init(); | 89 init(); |
| 90 | 90 |
| 91 // This line must be the last statement of this JS file. |
| 91 // A parenthesis is needed, because the caller of this script (PrivateScriptRunn
er.cpp) | 92 // A parenthesis is needed, because the caller of this script (PrivateScriptRunn
er.cpp) |
| 92 // is depending on the completion value of this script. | 93 // is depending on the completion value of this script. |
| 93 (installedClasses); | 94 (installedClasses); |
| OLD | NEW |