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

Side by Side Diff: chrome/browser/ui/cocoa/applescript/window_applescript.h

Issue 8118030: Add Applescript commands to enter presentation mode (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 2 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 // 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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698