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