Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(720)

Unified Diff: chrome/browser/cocoa/applescript/scripting.sdef

Issue 3163008: Removed a command which resulted in a crash.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/cocoa/applescript/scripting.sdef
===================================================================
--- chrome/browser/cocoa/applescript/scripting.sdef (revision 55911)
+++ chrome/browser/cocoa/applescript/scripting.sdef (working copy)
@@ -16,9 +16,6 @@
<cocoa key="isActive"/>
</property>
<property name="version" code="vers" description="The version of the application." type="text" access="r"/>
- <responds-to command="open">
- <cocoa method="handleOpenScriptCommand:"/>
- </responds-to>
<responds-to command="quit">
<cocoa method="handleQuitScriptCommand:"/>
</responds-to>
@@ -203,13 +200,13 @@
<responds-to command="redo">
<cocoa method="handlesRedoScriptCommand:"/>
</responds-to>
- <responds-to command="cut">
+ <responds-to command="cut selection">
<cocoa method="handlesCutScriptCommand:"/>
</responds-to>
- <responds-to command="copy">
+ <responds-to command="copy selection">
<cocoa method="handlesCopyScriptCommand:"/>
</responds-to>
- <responds-to command="paste">
+ <responds-to command="paste selection">
<cocoa method="handlesPasteScriptCommand:"/>
</responds-to>
<responds-to command="select all">
@@ -276,7 +273,7 @@
<command name="copy selection" code="CrSuCop " description="Copy text.">
<direct-parameter type="specifier"/>
</command>
- <command name="paste" code="CrSuPast" description="Paste text (If Possible).">
+ <command name="paste selection" code="CrSuPast" description="Paste text (If Possible).">
<direct-parameter type="specifier"/>
</command>
<command name="undo" code="CrSuUndo" description="Undo the last change.">

Powered by Google App Engine
This is Rietveld 408576698