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.
5 #ifndef CHROME_BROWSER_UI_COCOA_APPLESCRIPT_CONSTANTS_APPLESCRIPT_H_
6 #define CHROME_BROWSER_UI_COCOA_APPLESCRIPT_CONSTANTS_APPLESCRIPT_H_
8 #import <Cocoa/Cocoa.h>
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
;
16 // Property to access tabs.
17 extern NSString
* const kTabsProperty
;
19 // Property to access bookmarks folders.
20 extern NSString
* const kBookmarkFoldersProperty
;
22 // Property to access bookmark items.
23 extern NSString
* const kBookmarkItemsProperty
;
25 // To indicate a window in normal mode.
26 extern NSString
* const kNormalWindowMode
;
28 // To indicate a window in incognito mode.
29 extern NSString
* const kIncognitoWindowMode
;
31 #endif // CHROME_BROWSER_UI_COCOA_APPLESCRIPT_CONSTANTS_APPLESCRIPT_H_