OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IndentOutdentCommand
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
IndentOutdentCommand.h
34
class
IndentOutdentCommand
: public ApplyBlockElementCommand {
37
static PassRefPtr<
IndentOutdentCommand
> create(Document& document, EIndentType type, int marginInPixels = 0)
39
return adoptRef(new
IndentOutdentCommand
(document, type, marginInPixels));
45
IndentOutdentCommand
(Document&, EIndentType, int marginInPixels);
IndentOutdentCommand.cpp
27
#include "core/editing/
IndentOutdentCommand
.h"
46
IndentOutdentCommand
::
IndentOutdentCommand
(Document& document, EIndentType typeOfAction, int marginInPixels)
53
bool
IndentOutdentCommand
::tryIndentingAsListItem(const Position& start, const Position& end)
96
void
IndentOutdentCommand
::indentIntoBlockquote(const Position& start, const Position& end, RefPtr<Element>& targetBlockquote)
127
void
IndentOutdentCommand
::outdentParagraph()
194
void
IndentOutdentCommand
::outdentRegion(const VisiblePosition& startOfSelection, const VisiblePosition& endOfSelection)
230
void
IndentOutdentCommand
::formatSelection(const VisiblePosition& startOfSelection, const VisiblePosition& endOfSelection)
238
void
IndentOutdentCommand
::formatRange(const Position& start, const Position& end, const Position&, RefPtr<Element>& blockquoteForNextIndent)
Completed in 31 milliseconds