| 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 * @fileoverview Provides dialog-like behaviors for the tracing UI. | 6 * @fileoverview Provides dialog-like behaviors for the tracing UI. |
| 7 */ | 7 */ |
| 8 cr.define('cr.ui.overlay', function() { | 8 cr.define('cr.ui.overlay', function() { |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 } | 92 } |
| 93 | 93 |
| 94 return { | 94 return { |
| 95 globalInitialization: globalInitialization, | 95 globalInitialization: globalInitialization, |
| 96 setupOverlay: setupOverlay, | 96 setupOverlay: setupOverlay, |
| 97 }; | 97 }; |
| 98 }); | 98 }); |
| 99 | 99 |
| 100 document.addEventListener('DOMContentLoaded', | 100 document.addEventListener('DOMContentLoaded', |
| 101 cr.ui.overlay.globalInitialization); | 101 cr.ui.overlay.globalInitialization); |
| OLD | NEW |