Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: chrome/browser/cocoa/applescript/constants_applescript.mm

Issue 3046042: Added AppleScript support (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/applescript/constants_applescript.h ('k') | chrome/browser/cocoa/applescript/element_applescript.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698