summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/dev/text_input_dev.h
diff options
context:
space:
mode:
authornona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-07 09:57:28 +0000
committernona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-07 09:57:28 +0000
commitd33b11ac76f6cee90e9674682a0bdd9725eeeb00 (patch)
tree7ba29256348554c19a6bbcb7c39a32cd8a683ecc /ppapi/cpp/dev/text_input_dev.h
parentb0aa6ae154f37c1a88af79c015fbe045ff314ab2 (diff)
downloadchromium_src-d33b11ac76f6cee90e9674682a0bdd9725eeeb00.zip
chromium_src-d33b11ac76f6cee90e9674682a0bdd9725eeeb00.tar.gz
chromium_src-d33b11ac76f6cee90e9674682a0bdd9725eeeb00.tar.bz2
Rename PP_TextInputType to PP_TextInputType_Dev
Duplicated PP_TextInput_Type breaks generator so dropping PP_TextInput_Type from ppb_text_input_controller.idl We can't drop this enum from dev interface because dev interface is still used for Flash plugin. Once Flash uses stable interface, we can move this enum to ppb_text_input_controller.idl with removing dev interface. I confirmed this change does not breaks generator.py and build_sdk.py, and also current flash plugin still works correctly. BUG=None TBR=piman TEST=try bots NOTRY=True Review URL: https://chromiumcodereview.appspot.com/22364006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216141 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/dev/text_input_dev.h')
-rw-r--r--ppapi/cpp/dev/text_input_dev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/cpp/dev/text_input_dev.h b/ppapi/cpp/dev/text_input_dev.h
index ea75597..fca8728 100644
--- a/ppapi/cpp/dev/text_input_dev.h
+++ b/ppapi/cpp/dev/text_input_dev.h
@@ -45,7 +45,7 @@ class TextInput_Dev {
virtual void RequestSurroundingText(uint32_t desired_number_of_characters);
- void SetTextInputType(PP_TextInput_Type type);
+ void SetTextInputType(PP_TextInput_Type_Dev type);
void UpdateCaretPosition(const Rect& caret, const Rect& bounding_box);
void CancelCompositionText();
void SelectionChanged();