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

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DDeleteSelectionCommand.h35 class DeleteSelectionCommand : public CompositeEditCommand { class in namespace:WebCore
37 static PassRefPtr<DeleteSelectionCommand> create(Document* document, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false, bool sanitizeMarkup = true)
39 return adoptRef(new DeleteSelectionCommand(document, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements, sanitizeMarkup));
41 static PassRefPtr<DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false, bool sanitizeMarkup = true)
43 return adoptRef(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements, sanitizeMarkup));
47 DeleteSelectionCommand(Document*, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements, bool santizeMarkup);
48 DeleteSelectionCommand(const VisibleSelection&, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements, bool sanitizeMarkup);
H A DDeleteSelectionCommand.cpp27 #include "core/editing/DeleteSelectionCommand.h"
70 DeleteSelectionCommand::DeleteSelectionCommand(Document *document, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements, bool sanitizeMarkup) function in class:WebCore::DeleteSelectionCommand
88 DeleteSelectionCommand::DeleteSelectionCommand(const VisibleSelection& selection, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements, bool sanitizeMarkup) function in class:WebCore::DeleteSelectionCommand
107 void DeleteSelectionCommand::initializeStartEnd(Position& start, Position& end)
162 void DeleteSelectionCommand::setStartingSelectionOnSmartDelete(const Position& start, const Position& end)
176 void DeleteSelectionCommand::initializePositionData()
279 void DeleteSelectionCommand::saveTypingStyleState()
306 bool DeleteSelectionCommand
[all...]

Completed in 537 milliseconds