Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / hotword_private / getLaunchState / test.js
blob957d11e556bebd127cbaa472326a78d048d9ee5a
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.
5 chrome.test.runTests([
6   function getLaunchState() {
7     chrome.hotwordPrivate.getLaunchState(
8         chrome.test.callbackPass(function(result) {
9           chrome.test.sendMessage("launchMode: " +
10             result.launchMode);
11     }));
12   }
13 ]);