Searched defs:pendingEditorCommands (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
H A DWebEditorClientGtk.cpp35 void WebEditorClient::getEditorCommandsForKeyEvent(const KeyboardEvent* event, Vector<WTF::String>& pendingEditorCommands) argument
41 Messages::WebPageProxy::GetEditorCommandsForKeyEvent::Reply(pendingEditorCommands),
45 bool WebEditorClient::executePendingEditorCommands(Frame* frame, Vector<WTF::String> pendingEditorCommands, bool allowTextInsertion) argument
48 for (size_t i = 0; i < pendingEditorCommands.size(); i++) {
49 Editor::Command command = frame->editor()->command(pendingEditorCommands.at(i).utf8().data());
75 Vector<WTF::String> pendingEditorCommands;
76 getEditorCommandsForKeyEvent(event, pendingEditorCommands);
77 if (!pendingEditorCommands.isEmpty()) {
83 if (executePendingEditorCommands(frame, pendingEditorCommands, false))
90 if (executePendingEditorCommands(frame, pendingEditorCommands, fram
[all...]

Completed in 56 milliseconds