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

Side by Side Diff: chrome/browser/cocoa/applescript/constants_applescript.h

Issue 3046042: Added AppleScript support (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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_COCOA_APPLESCRIPT_CONSTANTS_APPLESCRIPT_H_
6 #define CHROME_BROWSER_COCOA_APPLESCRIPT_CONSTANTS_APPLESCRIPT_H_
7
8 #import <Cocoa/Cocoa.h>
9
10 // This file contains the constant that are use to set the property of an
11 // applescript scriptable item.
12 namespace AppleScript {
13 // Property to access windows.
14 extern NSString* const kWindowsProperty;
15
16 // Property to access tabs.
17 extern NSString* const kTabsProperty;
18
19 // Property to access bookmarks folders.
20 extern NSString* const kBookmarkFoldersProperty;
21
22 // Property to access bookmark items.
23 extern NSString* const kBookmarkItemsProperty;
24
25 // To indicate a window in normal mode.
26 extern NSString* const kNormalWindowMode;
27
28 // To indicate a window in incognito mode.
29 extern NSString* const kIncognitoWindowMode;
30 }
31 #endif // CHROME_BROWSER_COCOA_APPLESCRIPT_CONSTANTS_APPLESCRIPT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698