HomeSort by relevance Sort by last modified time
    Searched refs:EditorState (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebKit2/Shared/
EditorState.h 34 struct EditorState {
35 EditorState()
56 template<> struct ArgumentCoder<WebKit::EditorState> : SimpleArgumentCoder<WebKit::EditorState> { };
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h 109 struct EditorState;
219 EditorState editorState() const;
324 void setComposition(const String& text, Vector<WebCore::CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, EditorState& newState);
325 void confirmComposition(EditorState& newState);
326 void insertText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, bool& handled, EditorState& newState);
332 void executeKeypressCommands(const Vector<WebCore::KeypressCommand>&, bool& handled, EditorState& newState);
WebPage.cpp 324 EditorState WebPage::editorState() const
329 EditorState result;
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 34 #include "EditorState.h"
100 struct EditorState;
250 const EditorState& editorState() const { return m_editorState; }
592 void editorStateChanged(const EditorState&);
610 void interpretQueuedKeyEvent(const EditorState&, bool& handled, Vector<WebCore::KeypressCommand>&);
    [all...]
WebPageProxy.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 32 #import "EditorState.h"
185 bool sendResult = WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::InterpretQueuedKeyEvent(editorState()),
224 void WebPage::setComposition(const String& text, Vector<CompositionUnderline> underlines, uint64_t selectionStart, uint64_t selectionEnd, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, EditorState& newState)
238 newState = editorState();
241 void WebPage::confirmComposition(EditorState& newState)
247 newState = editorState();
250 void WebPage::insertText(const String& text, uint64_t replacementRangeStart, uint64_t replacementRangeEnd, bool& handled, EditorState& newState)
269 newState = editorState();
389 void WebPage::executeKeypressCommands(const Vector<WebCore::KeypressCommand>& commands, bool& handled, EditorState& newState)
392 newState = editorState();
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPageProxyMac.mm 32 #import "EditorState.h"
230 void WebPageProxy::interpretQueuedKeyEvent(const EditorState& state, bool& handled, Vector<WebCore::KeypressCommand>& commands)

Completed in 186 milliseconds