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

Unified Diff: ppapi/api/ppb_text_input.idl

Issue 18671004: PPAPI: Move IMEInputEvent and TextInput to stable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing comments Created 7 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: ppapi/api/ppb_text_input.idl
diff --git a/ppapi/api/dev/ppb_text_input_dev.idl b/ppapi/api/ppb_text_input.idl
similarity index 91%
rename from ppapi/api/dev/ppb_text_input_dev.idl
rename to ppapi/api/ppb_text_input.idl
index 27704b089ec5b28ab939077ff844aba32c183581..fe56af2c7ebaaf5f9534dd7fc989105b0929c8f9 100644
--- a/ppapi/api/dev/ppb_text_input_dev.idl
+++ b/ppapi/api/ppb_text_input.idl
@@ -4,12 +4,11 @@
*/
/**
- * This file defines the <code>PPB_TextInput_Dev</code> interface.
+ * This file defines the <code>PPB_TextInput</code> interface.
*/
label Chrome {
- M16 = 0.1,
- M19 = 0.2
+ M30 = 1.0
};
/**
@@ -39,11 +38,11 @@ enum PP_TextInput_Type {
};
/**
- * <code>PPB_TextInput_Dev</code> provides a set of functions for giving hints
+ * <code>PPB_TextInput</code> provides a set of functions for giving hints
* to the browser about the text input status of plugins, and functions for
* controlling input method editors (IMEs).
*/
-interface PPB_TextInput_Dev {
+interface PPB_TextInput {
/**
* Informs the browser about the current text input mode of the plugin.
* Typical use of this information in the browser is to properly
@@ -69,7 +68,7 @@ interface PPB_TextInput_Dev {
void CancelCompositionText([in] PP_Instance instance);
/**
- * In response to the <code>PPP_TextInput_Dev::RequestSurroundingText</code>
+ * In response to the <code>PPP_TextInput::RequestSurroundingText</code>
* call, informs the browser about the current text selection and surrounding
* text. <code>text</code> is a UTF-8 string that contains the current range
* of text selection in the plugin. <code>caret</code> is the byte-index of
@@ -100,7 +99,7 @@ interface PPB_TextInput_Dev {
/**
* Informs the browser when a range of text selection is changed in a plugin.
* When the browser needs to know the content of the updated selection, it
- * pings back by <code>PPP_TextInput_Dev::RequestSurroundingText</code>. The
+ * pings back by <code>PPP_TextInput::RequestSurroundingText</code>. The
* plugin then should send the information with
* <code>UpdateSurroundingText</code>.
*/

Powered by Google App Engine
This is Rietveld 408576698