summaryrefslogtreecommitdiffstats
path: root/webkit/glue/editor_client_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/editor_client_impl.cc')
-rw-r--r--webkit/glue/editor_client_impl.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/webkit/glue/editor_client_impl.cc b/webkit/glue/editor_client_impl.cc
index 80077ef..3e87091 100644
--- a/webkit/glue/editor_client_impl.cc
+++ b/webkit/glue/editor_client_impl.cc
@@ -458,16 +458,15 @@ static const KeyDownEntry keyDownEntries[] = {
{ WebCore::VKEY_INSERT, ShiftKey, "Paste" },
{ WebCore::VKEY_DELETE, ShiftKey, "Cut" },
#if PLATFORM(DARWIN)
- { 'C', CommandKey, "Copy" },
- { 'V', CommandKey, "Paste" },
+ // TODO(thakis): Remove -- crbug.com/25205
{ 'V', CommandKey | ShiftKey,
"PasteAndMatchStyle" },
- { 'X', CommandKey, "Cut" },
- { 'A', CommandKey, "SelectAll" },
+
+ // TODO(port): Remove once undo and redo are hooked up correctly in the menu
+ // and are validated correctly.
{ 'Z', CommandKey, "Undo" },
{ 'Z', CommandKey | ShiftKey,
"Redo" },
- { 'Y', CommandKey, "Redo" },
#else
{ 'C', CtrlKey, "Copy" },
{ 'V', CtrlKey, "Paste" },