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.cpp94 bool UndoStack::canRedo() const in canRedo() function in WebCore::UndoStack
112 if (canRedo()) { in redo()
DUndoStack.h52 bool canRedo() const;
DEditor.h178 bool canRedo();
DEditor.cpp1021 bool Editor::canRedo() in canRedo() function in WebCore::Editor
1024 return undoStack->canRedo(); in canRedo()
DEditorCommand.cpp1277 return frame.editor().canRedo(); in enabledRedo()
/external/chromium_org/chrome/browser/resources/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.cpp200 if (m_webView->focusedWebCoreFrame()->editor().canRedo()) in showContextMenu()