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

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

Issue 676593004: Adds experimental flag --enable-experimental-ime-features. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
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": "inputMethodPrivate", 7 "namespace": "inputMethodPrivate",
8 "platforms": ["chromeos"], 8 "platforms": ["chromeos"],
9 "description": "none", 9 "description": "none",
10 "functions": [ 10 "functions": [
11 { 11 {
12 "name": "getInputMethodConfig",
13 "type": "function",
14 "description": "Gets configurations for input methods.",
15 "parameters": [
16 {
17 "name": "callback",
18 "type": "function",
19 "optional": false,
20 "description": "Callback which is called with the config object.",
21 "parameters": [
22 {
23 "name": "config",
24 "type": "object",
25 "description": "The input method config object.",
26 "properties": {
27 "isPhysicalKeyboardAutocorrectEnabled": {"type": "boolean"}
28 }
29 }
30 ]
31 }
32 ]
33 }, {
12 "name": "getInputMethods", 34 "name": "getInputMethods",
13 "type": "function", 35 "type": "function",
14 "description": "Gets all whitelisted input methods.", 36 "description": "Gets all whitelisted input methods.",
15 "parameters": [ 37 "parameters": [
16 { 38 {
17 "name": "callback", 39 "name": "callback",
18 "type": "function", 40 "type": "function",
19 "optional": false, 41 "optional": false,
20 "description": "Callback which is called with the input method objec ts.", 42 "description": "Callback which is called with the input method objec ts.",
21 "parameters": [ 43 "parameters": [
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 { 106 {
85 "name": "newInputMethodId", 107 "name": "newInputMethodId",
86 "type": "string", 108 "type": "string",
87 "description": "New input method which is being used." 109 "description": "New input method which is being used."
88 } 110 }
89 ] 111 ]
90 } 112 }
91 ] 113 ]
92 } 114 }
93 ] 115 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698