| 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 * The global object. | 6 * The global object. |
| 7 * @type {!Object} | 7 * @type {!Object} |
| 8 * @const | 8 * @const |
| 9 */ | 9 */ |
| 10 var global = this; | 10 var global = this; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 PropertyKind: PropertyKind | 367 PropertyKind: PropertyKind |
| 368 }; | 368 }; |
| 369 })(); | 369 })(); |
| 370 | 370 |
| 371 | 371 |
| 372 /** | 372 /** |
| 373 * TODO(kgr): Move this to another file which is to be loaded last. | 373 * TODO(kgr): Move this to another file which is to be loaded last. |
| 374 * This will be done as part of future work to make this code pre-compilable. | 374 * This will be done as part of future work to make this code pre-compilable. |
| 375 */ | 375 */ |
| 376 cr.initialize(); | 376 cr.initialize(); |
| OLD | NEW |