Home | History | Annotate | Download | only in renderer_host

Lines Matching refs:composition

1131   // Reset the composition status and create IME windows.
1155 // Retrieve the result string and its attributes of the ongoing composition
1157 ui::CompositionText composition;
1158 if (ime_input_.GetResult(m_hWnd, lparam, &composition.text)) {
1159 render_widget_host_->ImeConfirmComposition(composition.text);
1161 // Fall though and try reading the composition string.
1163 // GCS_COMPSTR, which means an ongoing composition has been finished
1164 // by the start of another composition.
1166 // Retrieve the composition string and its attributes of the ongoing
1167 // composition and send it to a renderer process.
1168 if (ime_input_.GetComposition(m_hWnd, lparam, &composition)) {
1170 // composition string. See: https://bugs.webkit.org/show_bug.cgi?id=37788
1171 composition.selection = ui::Range(composition.selection.end());
1177 composition.underlines);
1179 composition.text, underlines,
1180 composition.selection.start(), composition.selection.end());
1194 // A composition has been ended while there is an ongoing composition,
1195 // i.e. the ongoing composition has been canceled.
1196 // We need to reset the composition status both of the ImeInput object and
1237 // Finish the ongoing composition whenever a mouse click happens.