1 // Copyright 2015 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.
7 function registerListener() {
9 chrome
.mdns
.onServiceList
.addListener(function(services
) {
10 chrome
.mdns
.forceDiscovery(function() {
11 chrome
.test
.assertTrue(!chrome
.runtime
.lastError
);
12 chrome
.test
.succeed();
14 }, {'serviceType': '_googlecast._tcp.local'});
15 chrome
.test
.notifyPass();