Chromium Code Reviews| 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 // The <code>chrome.hotwordPrivate</code> API allows extensions to access and | 5 // The <code>chrome.hotwordPrivate</code> API allows extensions to access and |
| 6 // mutate the preference for enabling hotword search. It also provides | 6 // mutate the preference for enabling hotword search. It also provides |
| 7 // information on whether the hotword search is available. This API provides an | 7 // information on whether the hotword search is available. This API provides an |
| 8 // event interface to transmit to the extension a signal that the preference fo | 8 // event interface to transmit to the extension a signal that the preference fo |
| 9 // hotword search has change. | 9 // hotword search has change. |
| 10 // | 10 // |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 boolean enabled; | 21 boolean enabled; |
| 22 | 22 |
| 23 // Whether the hotword extension is available to be enabled | 23 // Whether the hotword extension is available to be enabled |
| 24 boolean available; | 24 boolean available; |
| 25 | 25 |
| 26 // Whether the sound of "Ok, Google" plus a few seconds before is sent | 26 // Whether the sound of "Ok, Google" plus a few seconds before is sent |
| 27 // back to Google. | 27 // back to Google. |
| 28 boolean audioLoggingEnabled; | 28 boolean audioLoggingEnabled; |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 // The type of the recognized hotword. Right now it only has 'search' but | |
| 32 // could be expanded to other types of actions in the future. | |
| 33 enum HotwordType { search }; | |
| 34 | |
| 31 callback GenericDoneCallback = void (); | 35 callback GenericDoneCallback = void (); |
| 32 callback StatusDetailsCallback = void(StatusDetails result); | 36 callback StatusDetailsCallback = void(StatusDetails result); |
| 33 | 37 |
| 34 interface Functions { | 38 interface Functions { |
| 35 // Sets the current enabled state of hotword search. | 39 // Sets the current enabled state of hotword search. |
| 36 // True: enable hotword search. False: disable hotword search. | 40 // True: enable hotword search. False: disable hotword search. |
| 37 static void setEnabled(boolean state, optional GenericDoneCallback callback) ; | 41 static void setEnabled(boolean state, optional GenericDoneCallback callback) ; |
| 38 | 42 |
| 39 // Retrieves the current state of hotword search. | 43 // Retrieves the current state of hotword search. |
| 40 // The result is put into a StatusDetails object. | 44 // The result is put into a StatusDetails object. |
| 41 static void getStatus(StatusDetailsCallback callback); | 45 static void getStatus(StatusDetailsCallback callback); |
| 42 | 46 |
| 43 // Sets the current enabled state of audio logging in the extension. | 47 // Sets the current enabled state of audio logging in the extension. |
| 44 // True: logging enabled. False: no logging. | 48 // True: logging enabled. False: no logging. |
| 45 static void setAudioLoggingEnabled(boolean state, optional GenericDoneCallba ck callback); | 49 static void setAudioLoggingEnabled(boolean state, optional GenericDoneCallba ck callback); |
| 50 | |
| 51 // Sets the current state of the browser-requested hotword session. | |
| 52 static void setHotwordSessionState(boolean started, optional GenericDoneCall back callback); | |
|
asargent_no_longer_on_chrome
2014/05/04 21:55:23
nit: > 80 chars - wrap at the "," like a c++ funct
Jun Mukai
2014/05/05 18:45:04
Done.
| |
| 53 | |
| 54 // Notifies that a hotword has been recognized in the browser-requested | |
| 55 // hotword session. | |
| 56 static void notifyHotwordRecognition(HotwordType type, optional GenericDoneC allback callback); | |
|
asargent_no_longer_on_chrome
2014/05/04 21:55:23
same nit here
Jun Mukai
2014/05/05 18:45:04
Done.
| |
| 46 }; | 57 }; |
| 47 | 58 |
| 48 interface Events { | 59 interface Events { |
| 49 // Fired when the hotword search enabled preference is changed. | 60 // Fired when the hotword search enabled preference is changed. |
| 50 static void onEnabledChanged(); | 61 static void onEnabledChanged(); |
| 62 | |
| 63 // Fired when the browser wants to start a hotword session. | |
| 64 static void onHotwordSessionRequested(); | |
| 65 | |
| 66 // Fired when the browser wants to stop the requested hotword session. | |
| 67 static void onHotwordSessionStopped(); | |
| 51 }; | 68 }; |
| 52 }; | 69 }; |
| OLD | NEW |