Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / hotword_private / onFinalizeSpeakerModel / test.js
blob18b63993bdda075dd7600ef7d0e36380cc8e6522
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 onFinalizeSpeakerModel() {
7 chrome.hotwordPrivate.onFinalizeSpeakerModel.addListener(function () {
8 chrome.test.sendMessage("notification");
9 chrome.test.succeed();
10 });
11 chrome.test.sendMessage("ready");
13 ]);