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