| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 /** | |
| 6 * Test fixture for WebRTCDeviceProvider. | |
| 7 * @constructor | |
| 8 * @extends {testing.Test} | |
| 9 */ | |
| 10 function WebRTCDeviceProviderBrowserTest() {} | |
| 11 | |
| 12 WebRTCDeviceProviderBrowserTest.prototype = { | |
| 13 __proto__: testing.Test.prototype, | |
| 14 | |
| 15 /** | |
| 16 * Browse to the worker. | |
| 17 */ | |
| 18 browsePreload: 'chrome://webrtc-device-provider/background_worker.html', | |
| 19 | |
| 20 isAsync: true, | |
| 21 }; | |
| 22 | |
| 23 TEST_F('WebRTCDeviceProviderBrowserTest', 'TestLoads', function() { | |
| 24 testDone(); | |
| 25 }); | |
| OLD | NEW |