constants_applescript.h revision 21d179b334e59e9a3bfcaed4c4430bef1bc5759d
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_UI_COCOA_APPLESCRIPT_CONSTANTS_APPLESCRIPT_H_
6#define CHROME_BROWSER_UI_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.
12namespace AppleScript {
13// Property to access windows.
14extern NSString* const kWindowsProperty;
15
16// Property to access tabs.
17extern NSString* const kTabsProperty;
18
19// Property to access bookmarks folders.
20extern NSString* const kBookmarkFoldersProperty;
21
22// Property to access bookmark items.
23extern NSString* const kBookmarkItemsProperty;
24
25// To indicate a window in normal mode.
26extern NSString* const kNormalWindowMode;
27
28// To indicate a window in incognito mode.
29extern NSString* const kIncognitoWindowMode;
30}
31#endif  // CHROME_BROWSER_UI_COCOA_APPLESCRIPT_CONSTANTS_APPLESCRIPT_H_
32