OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 (function() { | 5 (function() { |
6 'use strict'; | 6 'use strict'; |
7 | 7 |
8 /** | 8 /** |
9 * @fileoverview This extension provides hotword triggering capabilites to | 9 * @fileoverview This extension provides hotword triggering capabilites to |
10 * Chrome. | 10 * Chrome. |
(...skipping 25 matching lines...) Expand all Loading... |
36 if (info.id == hotword.constants.SHARED_MODULE_ID) | 36 if (info.id == hotword.constants.SHARED_MODULE_ID) |
37 chrome.runtime.reload(); | 37 chrome.runtime.reload(); |
38 }); | 38 }); |
39 | 39 |
40 // Detect when a session has requested to be started and stopped. | 40 // Detect when a session has requested to be started and stopped. |
41 chrome.hotwordPrivate.onHotwordSessionRequested.addListener(function() { | 41 chrome.hotwordPrivate.onHotwordSessionRequested.addListener(function() { |
42 // TODO(amistry): This event should change state depending on whether the | 42 // TODO(amistry): This event should change state depending on whether the |
43 // user has enabled always-on hotwording. But for now, always signal the | 43 // user has enabled always-on hotwording. But for now, always signal the |
44 // start of a hotwording session. This allows this extension to work with | 44 // start of a hotwording session. This allows this extension to work with |
45 // the app launcher in the current state. | 45 // the app launcher in the current state. |
46 chrome.hotwordPrivate.setHotwordSessionState(true, function() {}); | 46 stateManager.startSession( |
| 47 hotword.constants.SessionSource.LAUNCHER, |
| 48 function() { |
| 49 chrome.hotwordPrivate.setHotwordSessionState(true, function() {}); |
| 50 }); |
47 }); | 51 }); |
48 | 52 |
49 chrome.hotwordPrivate.onHotwordSessionStopped.addListener(function() { | 53 chrome.hotwordPrivate.onHotwordSessionStopped.addListener(function() { |
| 54 stateManager.stopSession(hotword.constants.SessionSource.LAUNCHER); |
50 chrome.hotwordPrivate.setHotwordSessionState(false, function() {}); | 55 chrome.hotwordPrivate.setHotwordSessionState(false, function() {}); |
51 }); | 56 }); |
52 }()); | 57 }()); |
OLD | NEW |