summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/applescript/constants_applescript.mm
blob: 3eddc9a9b83f064b9c3d839e9feffab543fa5101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "chrome/browser/cocoa/applescript/constants_applescript.h"

namespace AppleScript {
// Property to access windows.
NSString* const kWindowsProperty = @"appleScriptWindows";

// Property to access tabs.
NSString* const kTabsProperty = @"tabs";

// Property to access bookmarks folders.
NSString* const kBookmarkFoldersProperty = @"bookmarkFolders";

// Property to access bookmark items.
NSString* const kBookmarkItemsProperty = @"bookmarkItems";

// To indicate a window in normal mode.
NSString* const kNormalWindowMode = @"normal";

// To indicate a window in incognito mode.
NSString* const kIncognitoWindowMode = @"incognito";
}