OLD | NEW |
---|---|
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_WINDOW_APPLESCRIPT_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_APPLESCRIPT_WINDOW_APPLESCRIPT_H_ |
6 #define CHROME_BROWSER_UI_COCOA_APPLESCRIPT_WINDOW_APPLESCRIPT_H_ | 6 #define CHROME_BROWSER_UI_COCOA_APPLESCRIPT_WINDOW_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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
69 // but instead pass it onto the NSWindow associated with the window. | 69 // but instead pass it onto the NSWindow associated with the window. |
70 - (id)valueForUndefinedKey:(NSString*)key; | 70 - (id)valueForUndefinedKey:(NSString*)key; |
71 - (void)setValue:(id)value forUndefinedKey:(NSString*)key; | 71 - (void)setValue:(id)value forUndefinedKey:(NSString*)key; |
72 | 72 |
73 // Used to close window. | 73 // Used to close window. |
74 - (void)handlesCloseScriptCommand:(NSCloseCommand*)command; | 74 - (void)handlesCloseScriptCommand:(NSCloseCommand*)command; |
75 | 75 |
76 // The index of the window, windows are ordered front to back. | 76 // The index of the window, windows are ordered front to back. |
77 - (NSNumber*)orderedIndex; | 77 - (NSNumber*)orderedIndex; |
78 | 78 |
79 - (NSNumber*)presenting; | |
pink (ping after 24hrs)
2011/10/18 13:25:20
All public methods need comments.
keishi
2011/10/24 02:16:33
Done.
| |
80 - (void)handlesEnterPresentationMode:(NSScriptCommand*)command; | |
81 - (void)handlesExitPresentationMode:(NSScriptCommand*)command; | |
82 | |
79 @end | 83 @end |
80 | 84 |
81 #endif // CHROME_BROWSER_UI_COCOA_APPLESCRIPT_WINDOW_APPLESCRIPT_H_ | 85 #endif // CHROME_BROWSER_UI_COCOA_APPLESCRIPT_WINDOW_APPLESCRIPT_H_ |
OLD | NEW |