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

Unified Diff: chrome/common/extensions/api/extension_api.json

Issue 7553016: Use text input type to control visibility of virtual keyboard (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix reiview issues Created 9 years, 5 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/common/extensions/api/extension_api.json
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
index dcfbf30a1c43000d67d9c554fcce715b400d1824..ca1578c4db7ec2e7510af46faae46e3bf3f84bde 100644
--- a/chrome/common/extensions/api/extension_api.json
+++ b/chrome/common/extensions/api/extension_api.json
@@ -3264,6 +3264,19 @@
"description": "Name of the MenuItem which was activated"
}
]
+ },
+ {
+ "name": "onTextInputTypeChanged",
+ "type": "function",
+ "description": "This event is sent to virtual keyboard when the text input type is changed.",
bryeung 2011/08/03 22:22:04 "to the virtual keyboard"
Peng 2011/08/04 19:47:53 Done.
+ "parameters": [
+ {
+ "type": "string",
+ "name": "type",
+ "enum": ["none", "text", "password", "search", "email", "number", "tel", "url"],
+ "description": "Type of the current focused input field."
+ }
+ ]
}
]
},

Powered by Google App Engine
This is Rietveld 408576698