Index: chrome/test/data/extensions/api_test/hotword_private/getLaunchState/test.js |
diff --git a/chrome/test/data/extensions/api_test/hotword_private/isAvailable/test.js b/chrome/test/data/extensions/api_test/hotword_private/getLaunchState/test.js |
similarity index 62% |
copy from chrome/test/data/extensions/api_test/hotword_private/isAvailable/test.js |
copy to chrome/test/data/extensions/api_test/hotword_private/getLaunchState/test.js |
index 01ef5b831bdf78a537d8199de612f683ac0bd265..957d11e556bebd127cbaa472326a78d048d9ee5a 100644 |
--- a/chrome/test/data/extensions/api_test/hotword_private/isAvailable/test.js |
+++ b/chrome/test/data/extensions/api_test/hotword_private/getLaunchState/test.js |
@@ -3,10 +3,11 @@ |
// found in the LICENSE file. |
chrome.test.runTests([ |
- function isAvailable() { |
- chrome.hotwordPrivate.getStatus( |
+ function getLaunchState() { |
+ chrome.hotwordPrivate.getLaunchState( |
chrome.test.callbackPass(function(result) { |
- chrome.test.sendMessage("available: " + result.available); |
+ chrome.test.sendMessage("launchMode: " + |
+ result.launchMode); |
})); |
} |
]); |