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