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

Side by Side Diff: chrome/common/extensions/api/tts_engine.json

Issue 12522004: Lazily load extension API schemas (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 [ 5 [
6 { 6 {
7 "namespace": "ttsEngine", 7 "namespace": "ttsEngine",
8 "dependencies": [ "tts" ],
9 "functions": [ 8 "functions": [
10 { 9 {
11 "name": "sendTtsEvent", 10 "name": "sendTtsEvent",
12 "nodoc": true, 11 "nodoc": true,
13 "type": "function", 12 "type": "function",
14 "description": "Routes a TTS event from a speech engine to a client.", 13 "description": "Routes a TTS event from a speech engine to a client.",
15 "parameters": [ 14 "parameters": [
16 { 15 {
17 "type": "integer", 16 "type": "integer",
18 "name": "requestId" 17 "name": "requestId"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 ] 94 ]
96 }, 95 },
97 { 96 {
98 "name": "onStop", 97 "name": "onStop",
99 "type": "function", 98 "type": "function",
100 "description": "Fired when a call is made to tts.stop and this extension may be in the middle of speaking. If an extension receives a call to onStop and speech is already stopped, it should do nothing (not raise an error)." 99 "description": "Fired when a call is made to tts.stop and this extension may be in the middle of speaking. If an extension receives a call to onStop and speech is already stopped, it should do nothing (not raise an error)."
101 } 100 }
102 ] 101 ]
103 } 102 }
104 ] 103 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/tabs.json ('k') | chrome/common/extensions/api/web_request_internal.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698