OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_COCOA_APPLESCRIPT_TAB_APPLESCRIPT_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_APPLESCRIPT_TAB_APPLESCRIPT_H_ |
6 #define CHROME_BROWSER_UI_COCOA_APPLESCRIPT_TAB_APPLESCRIPT_H_ | 6 #define CHROME_BROWSER_UI_COCOA_APPLESCRIPT_TAB_APPLESCRIPT_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 #import "chrome/browser/ui/cocoa/applescript/element_applescript.h" | 10 #import "chrome/browser/ui/cocoa/applescript/element_applescript.h" |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 - (void)handlesCloseScriptCommand:(NSScriptCommand*)command; | 74 - (void)handlesCloseScriptCommand:(NSScriptCommand*)command; |
75 | 75 |
76 // Displays the HTML of the tab in a new tab. | 76 // Displays the HTML of the tab in a new tab. |
77 - (void)handlesViewSourceScriptCommand:(NSScriptCommand*)command; | 77 - (void)handlesViewSourceScriptCommand:(NSScriptCommand*)command; |
78 | 78 |
79 // Executes a piece of javascript in the tab. | 79 // Executes a piece of javascript in the tab. |
80 - (id)handlesExecuteJavascriptScriptCommand:(NSScriptCommand*)command; | 80 - (id)handlesExecuteJavascriptScriptCommand:(NSScriptCommand*)command; |
81 | 81 |
82 @end | 82 @end |
83 | 83 |
84 #endif// CHROME_BROWSER_UI_COCOA_APPLESCRIPT_TAB_APPLESCRIPT_H_ | 84 #endif // CHROME_BROWSER_UI_COCOA_APPLESCRIPT_TAB_APPLESCRIPT_H_ |
OLD | NEW |