Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/editing/
DUndoStack.cpp93 bool UndoStack::canRedo() const in canRedo() function in WebCore::UndoStack
111 if (canRedo()) { in redo()
DUndoStack.h52 bool canRedo() const;
DEditor.h173 bool canRedo();
DEditor.cpp1006 bool Editor::canRedo() in canRedo() function in WebCore::Editor
1009 return undoStack->canRedo(); in canRedo()
DEditorCommand.cpp1278 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.js223 var canRedo = this.commandQueue_ && this.commandQueue_.canRedo();
225 this.redoButton_.hidden = !canRedo;
572 if (this.commandQueue_.canRedo()) {
/external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
Dcommands.js233 CommandQueue.prototype.canRedo = function() { method in CommandQueue
241 if (!this.canRedo())
Dimage_editor.js223 var canRedo = this.commandQueue_ && this.commandQueue_.canRedo();
225 this.redoButton_.hidden = !canRedo;
572 if (this.commandQueue_.canRedo()) {
/external/chromium_org/third_party/WebKit/Source/web/
DContextMenuClientImpl.cpp207 if (toLocalFrame(m_webView->focusedWebCoreFrame())->editor().canRedo()) in showContextMenu()