| 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 cr.define('gcmInternals', function() { | 5 cr.define('gcmInternals', function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 var isRecording = false; | 8 var isRecording = false; |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 } | 139 } |
| 140 | 140 |
| 141 // Return an object with all of the exports. | 141 // Return an object with all of the exports. |
| 142 return { | 142 return { |
| 143 initialize: initialize, | 143 initialize: initialize, |
| 144 setGcmInternalsInfo: setGcmInternalsInfo, | 144 setGcmInternalsInfo: setGcmInternalsInfo, |
| 145 }; | 145 }; |
| 146 }); | 146 }); |
| 147 | 147 |
| 148 document.addEventListener('DOMContentLoaded', gcmInternals.initialize); | 148 document.addEventListener('DOMContentLoaded', gcmInternals.initialize); |
| OLD | NEW |