Home
last modified time | relevance | path

Searched refs:canRedo (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DUndoStack.cpp93 bool UndoStack::canRedo() const in canRedo() function in blink::UndoStack
111 if (canRedo()) { in redo()
DUndoStack.h52 bool canRedo() const;
DEditor.h172 bool canRedo();
DEditor.cpp983 bool Editor::canRedo() in canRedo() function in blink::Editor
986 return undoStack->canRedo(); in canRedo()
DEditorCommand.cpp1296 return frame.editor().canRedo(); in enabledRedo()
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
Dcommands.js233 CommandQueue.prototype.canRedo = function() { method in CommandQueue
241 if (!this.canRedo())
Dimage_editor.js219 var canRedo = this.commandQueue_ && this.commandQueue_.canRedo();
221 this.redoButton_.hidden = !canRedo;
570 if (this.commandQueue_.canRedo()) {
/external/chromium_org/third_party/WebKit/Source/web/
DContextMenuClientImpl.cpp211 if (toLocalFrame(m_webView->focusedCoreFrame())->editor().canRedo()) in showContextMenu()