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

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

Issue 1552743003: Add chrome.inputMethodPrivate.onImeMenuActivationChanged API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 "description": "none", 8 "description": "none",
9 "functions": [ 9 "functions": [
10 { 10 {
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 } 218 }
219 }, { 219 }, {
220 "name": "removed", 220 "name": "removed",
221 "type": "array", 221 "type": "array",
222 "description": "List of removed words.", 222 "description": "List of removed words.",
223 "items": { 223 "items": {
224 "type": "string" 224 "type": "string"
225 } 225 }
226 } 226 }
227 ] 227 ]
228 }, {
229 "name": "onImeMenuActivationChanged",
230 "type": "function",
231 "description": "Fired when the system IME Menu is activated",
Devlin 2016/01/13 18:11:27 nit: lowercase "menu" Is this only fired when the
Azure Wei 2016/01/14 09:38:26 Done.
232 "parameters": [
233 {
234 "name": "activation",
235 "type": "boolean",
236 "description": "Whether the IME menu is activated or deactivated"
Devlin 2016/01/13 18:11:27 nit: the phrasing here is a bit weird, because it
Azure Wei 2016/01/14 09:38:26 Done.
237 }
238 ]
228 } 239 }
229 ] 240 ]
230 } 241 }
231 ] 242 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698