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 #import "chrome/browser/ui/cocoa/applescript/constants_applescript.h"
7 namespace AppleScript {
8 // Property to access windows.
9 NSString* const kWindowsProperty = @"appleScriptWindows";
11 // Property to access tabs.
12 NSString* const kTabsProperty = @"tabs";
14 // Property to access bookmarks folders.
15 NSString* const kBookmarkFoldersProperty = @"bookmarkFolders";
17 // Property to access bookmark items.
18 NSString* const kBookmarkItemsProperty = @"bookmarkItems";
20 // To indicate a window in normal mode.
21 NSString* const kNormalWindowMode = @"normal";
23 // To indicate a window in incognito mode.
24 NSString* const kIncognitoWindowMode = @"incognito";