Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
|
apacible
2016/03/10 18:11:06
Not sure if rietveld just isn't showing it, but we
btolsch
2016/03/10 19:08:08
No there were no changes, I don't know why it says
| |
| 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 /** @fileoverview Suite of tests for media-router-search-highlighter. */ | 5 /** @fileoverview Suite of tests for media-router-search-highlighter. */ |
| 6 cr.define('media_router_search_highlighter', function() { | 6 cr.define('media_router_search_highlighter', function() { |
| 7 function registerTests() { | 7 function registerTests() { |
| 8 suite('MediaRouterSearchHighlighter', function() { | 8 suite('MediaRouterSearchHighlighter', function() { |
| 9 /** | 9 /** |
| 10 * Media Router Search Highlighted created before each test. | 10 * Media Router Search Highlighted created before each test. |
| 11 * @type {MediaRouterSearchHighlighter} | 11 * @type {MediaRouterSearchHighlighter} |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 148 }); | 148 }); |
| 149 done(); | 149 done(); |
| 150 }); | 150 }); |
| 151 }); | 151 }); |
| 152 } | 152 } |
| 153 | 153 |
| 154 return { | 154 return { |
| 155 registerTests: registerTests, | 155 registerTests: registerTests, |
| 156 }; | 156 }; |
| 157 }); | 157 }); |
| OLD | NEW |