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

Side by Side Diff: chrome/browser/cocoa/applescript/scripting.sdef

Issue 3180006: Cleaned up the SDEF... (Closed) Base URL: http://src.chromium.org/svn/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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd"> 2 <!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
3 <dictionary title="Dictionary"> 3 <dictionary title="Dictionary">
4 <!-- 4 <!--
5 STANDARD SUITE 5 STANDARD SUITE
6 --> 6 -->
7 <suite name="Standard Suite" code="core" description="Common classes and commands for all applications."> 7 <suite name="Standard Suite" code="core" description="Common classes and commands for all applications.">
8 <cocoa name="NSCoreSuite"/> 8 <cocoa name="NSCoreSuite"/>
9 <class name="application" code="capp" description="The applicati on&apos;s top-level scripting object."> 9 <class name="application" code="capp" description="The applicati on&apos;s top-level scripting object.">
10 <cocoa class="BrowserCrApplication"/> 10 <cocoa class="BrowserCrApplication"/>
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 </responds-to> 226 </responds-to>
227 <responds-to command="print"> 227 <responds-to command="print">
228 <cocoa method="handlesPrintScriptCommand:"/> 228 <cocoa method="handlesPrintScriptCommand:"/>
229 </responds-to> 229 </responds-to>
230 <responds-to command="view source"> 230 <responds-to command="view source">
231 <cocoa method="handlesViewSourceScriptCommand:"/ > 231 <cocoa method="handlesViewSourceScriptCommand:"/ >
232 </responds-to> 232 </responds-to>
233 <responds-to command="save"> 233 <responds-to command="save">
234 <cocoa method="handlesSaveScriptCommand:"/> 234 <cocoa method="handlesSaveScriptCommand:"/>
235 </responds-to> 235 </responds-to>
236 <responds-to command="execute">
237 <cocoa method="handlesExecuteJavascriptScriptCom mand:"/>
238 </responds-to>
236 </class> 239 </class>
237 <class name="bookmark folder" code="CrBF" description="A bookmar ks folder that contains other bookmarks folder and bookmark items."> 240 <class name="bookmark folder" code="CrBF" description="A bookmar ks folder that contains other bookmarks folder and bookmark items.">
238 <cocoa class="BookmarkFolderAppleScript"/> 241 <cocoa class="BookmarkFolderAppleScript"/>
239 <element description="The bookmark folders present withi n." type="bookmark folder"> 242 <element description="The bookmark folders present withi n." type="bookmark folder">
240 <cocoa key="bookmarkFolders"/> 243 <cocoa key="bookmarkFolders"/>
241 </element> 244 </element>
242 <element description="The bookmarks present within." typ e="bookmark item"> 245 <element description="The bookmarks present within." typ e="bookmark item">
243 <cocoa key="bookmarkItems"/> 246 <cocoa key="bookmarkItems"/>
244 </element> 247 </element>
245 <property name="id" code="ID " description="Unique ID o f the bookmark folder." type="number" access="r"> 248 <property name="id" code="ID " description="Unique ID o f the bookmark folder." type="number" access="r">
246 <cocoa key="uniqueID"/> 249 <cocoa key="uniqueID"/>
247 </property> 250 </property>
248 <property name="title" code="pnam" description="The titl e of the folder." type="text"/> 251 <property name="title" code="pnam" description="The titl e of the folder." type="text"/>
249 </class> 252 </class>
250 <class name="bookmark item" code="CrBI" description="An item con sists of an URL and the title of a bookmark"> 253 <class name="bookmark item" code="CrBI" description="An item con sists of an URL and the title of a bookmark">
251 <cocoa class="BookmarkItemAppleScript"/> 254 <cocoa class="BookmarkItemAppleScript"/>
252 <property name="id" code="ID " description="Unique ID o f the bookmark item." type="integer" access="r"> 255 <property name="id" code="ID " description="Unique ID o f the bookmark item." type="integer" access="r">
253 <cocoa key="uniqueID"/> 256 <cocoa key="uniqueID"/>
254 </property> 257 </property>
255 <property name="title" code="pnam" description="The titl e of the bookmark item." type="text"/> 258 <property name="title" code="pnam" description="The titl e of the bookmark item." type="text"/>
256 <property name="URL" code="URL " description="The URL of the bookmark." type="text"/> 259 <property name="URL" code="URL " description="The URL of the bookmark." type="text"/>
257 </class> 260 </class>
258 <command name="reload" code="CrSuRlod" description="Reload a tab ."> 261 <command name="reload" code="CrSuRlod" description="Reload a tab .">
259 » » » <direct-parameter type="specifier"/> 262 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
260 </command> 263 </command>
261 <command name="go back" code="CrSuBack" description="Go Back (If Possible)."> 264 <command name="go back" code="CrSuBack" description="Go Back (If Possible).">
262 » » » <direct-parameter type="specifier"/> 265 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
263 </command> 266 </command>
264 <command name="go forward" code="CrSuFwd " description="Go Forwa rd (If Possible)."> 267 <command name="go forward" code="CrSuFwd " description="Go Forwa rd (If Possible).">
265 » » » <direct-parameter type="specifier"/> 268 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
266 </command> 269 </command>
267 <command name="select all" code="CrSuSlAl" description="Select a ll."> 270 <command name="select all" code="CrSuSlAl" description="Select a ll.">
268 » » » <direct-parameter type="specifier"/> 271 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
269 </command> 272 </command>
270 <command name="cut selection" code="CrSuCut " description="Cut s elected text (If Possible)."> 273 <command name="cut selection" code="CrSuCut " description="Cut s elected text (If Possible).">
271 » » » <direct-parameter type="specifier"/> 274 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
272 </command> 275 </command>
273 <command name="copy selection" code="CrSuCop " description="Copy text."> 276 <command name="copy selection" code="CrSuCop " description="Copy text.">
274 » » » <direct-parameter type="specifier"/> 277 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
275 </command> 278 </command>
276 <command name="paste selection" code="CrSuPast" description="Pas te text (If Possible)."> 279 <command name="paste selection" code="CrSuPast" description="Pas te text (If Possible).">
277 » » » <direct-parameter type="specifier"/> 280 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
278 </command> 281 </command>
279 <command name="undo" code="CrSuUndo" description="Undo the last change."> 282 <command name="undo" code="CrSuUndo" description="Undo the last change.">
280 » » » <direct-parameter type="specifier"/> 283 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
281 </command> 284 </command>
282 <command name="redo" code="CrSuRedo" description="Redo the last change."> 285 <command name="redo" code="CrSuRedo" description="Redo the last change.">
283 » » » <direct-parameter type="specifier"/> 286 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
284 </command> 287 </command>
285 <command name="stop" code="CrSustop" description="Stop the curre nt tab from loading."> 288 <command name="stop" code="CrSustop" description="Stop the curre nt tab from loading.">
286 » » » <direct-parameter type="specifier"/> 289 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
287 </command> 290 </command>
288 <command name="view source" code="CrSuVSrc" description="View th e HTML source of the tab."> 291 <command name="view source" code="CrSuVSrc" description="View th e HTML source of the tab.">
289 » » » <direct-parameter type="specifier"/> 292 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
293 » » </command>
294 » » <command name="execute" code="CrSuExJa" description="Execute a p iece of javascript.">
295 » » » <direct-parameter description="The tab to execute the co mmand in." type="specifier"/>
296 » » » <parameter name="javascript" code="JvSc" description="Th e javascript code to execute." type="text">
297 » » » » <cocoa key="javascript"/>
298 » » » </parameter>
299 » » » <result type="any"/>
290 </command> 300 </command>
291 </suite> 301 </suite>
292 </dictionary> 302 </dictionary>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698