HomeSort by relevance Sort by last modified time
    Searched defs:TypingCommand (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.cpp 27 #include "core/editing/TypingCommand.h"
52 TypingCommandLineOperation(TypingCommand* typingCommand, bool selectInsertedText, const String& text)
53 : m_typingCommand(typingCommand)
71 TypingCommand* m_typingCommand;
76 TypingCommand::TypingCommand(Document *document, ETypingCommand commandType, const String &textToInsert, Options options, TextGranularity granularity, TextCompositionType compositionType)
93 void TypingCommand::deleteSelection(Document* document, Options options)
103 if (RefPtr<TypingCommand> lastTypingCommand = lastTypingCommandIfStillOpenForTyping(frame)) {
109 TypingCommand::create(document, DeleteSelection, "", options)->apply()
    [all...]
TypingCommand.h 33 class TypingCommand : public TextInsertionBaseCommand {
81 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity = CharacterGranularity)
83 return adoptRef(new TypingCommand(document, command, text, options, granularity, TextCompositionNone));
86 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text, Options options, TextCompositionType compositionType)
88 return adoptRef(new TypingCommand(document, command, text, options, CharacterGranularity, compositionType));
91 TypingCommand(Document*, ETypingCommand, const String& text, Options, TextGranularity, TextCompositionType);
98 static PassRefPtr<TypingCommand> lastTypingCommandIfStillOpenForTyping(Frame*);
113 static void updateSelectionIfDifferentFromCurrentSelection(TypingCommand*, Frame*);

Completed in 223 milliseconds