Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4894)

Unified Diff: chrome/renderer/resources/extensions/tts_custom_bindings.js

Issue 12313142: Revert 184837 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/resources/extensions/tts_custom_bindings.js
===================================================================
--- chrome/renderer/resources/extensions/tts_custom_bindings.js (revision 184858)
+++ chrome/renderer/resources/extensions/tts_custom_bindings.js (working copy)
@@ -2,10 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Custom binding for the tts API.
+// Custom bindings for the tts API.
-var binding = require('binding').Binding.create('tts');
-
var ttsNatives = requireNative('tts');
var GetNextTTSEventId = ttsNatives.GetNextTTSEventId;
@@ -13,9 +11,8 @@
var sendRequest = require('sendRequest').sendRequest;
var lazyBG = requireNative('lazy_background_page');
-binding.registerCustomHook(function(api) {
+chromeHidden.registerCustomHook('tts', function(api) {
var apiFunctions = api.apiFunctions;
- var tts = api.compiledApi;
chromeHidden.tts = {
handlers: {}
@@ -42,7 +39,7 @@
// add a listener to chrome.tts.onEvent will fail.
// See http://crbug.com/122474.
try {
- tts.onEvent.addListener(ttsEventListener);
+ chrome.tts.onEvent.addListener(ttsEventListener);
} catch (e) {}
apiFunctions.setHandleRequest('speak', function() {
@@ -59,5 +56,3 @@
return id;
});
});
-
-exports.binding = binding.generate();

Powered by Google App Engine
This is Rietveld 408576698