| 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 /** | 5 /** |
| 6 * Namespace for test related things. | 6 * Namespace for test related things. |
| 7 */ | 7 */ |
| 8 var test = test || {}; | 8 var test = test || {}; |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 } else { | 112 } else { |
| 113 console.error('Invalid function name.'); | 113 console.error('Invalid function name.'); |
| 114 sendResponse(false); | 114 sendResponse(false); |
| 115 return false; | 115 return false; |
| 116 } | 116 } |
| 117 }.wrap()); | 117 }.wrap()); |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 // Register the test utils. | 120 // Register the test utils. |
| 121 test.util.registerRemoteTestUtils(); | 121 test.util.registerRemoteTestUtils(); |
| OLD | NEW |