OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_ |
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_ |
7 #pragma once | |
8 | 7 |
9 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
10 | 9 |
11 #import "base/memory/scoped_nsobject.h" | 10 #import "base/memory/scoped_nsobject.h" |
12 #import "content/browser/accessibility/browser_accessibility_delegate_mac.h" | 11 #import "content/browser/accessibility/browser_accessibility_delegate_mac.h" |
13 #include "content/browser/accessibility/browser_accessibility.h" | 12 #include "content/browser/accessibility/browser_accessibility.h" |
14 | 13 |
15 // BrowserAccessibilityCocoa is a cocoa wrapper around the BrowserAccessibility | 14 // BrowserAccessibilityCocoa is a cocoa wrapper around the BrowserAccessibility |
16 // object. The renderer converts webkit's accessibility tree into a | 15 // object. The renderer converts webkit's accessibility tree into a |
17 // WebAccessibility tree and passes it to the browser process over IPC. | 16 // WebAccessibility tree and passes it to the browser process over IPC. |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 @property(nonatomic, readonly) NSArray* tabs; | 64 @property(nonatomic, readonly) NSArray* tabs; |
66 @property(nonatomic, readonly) NSString* title; | 65 @property(nonatomic, readonly) NSString* title; |
67 @property(nonatomic, readonly) NSString* url; | 66 @property(nonatomic, readonly) NSString* url; |
68 @property(nonatomic, readonly) NSString* value; | 67 @property(nonatomic, readonly) NSString* value; |
69 @property(nonatomic, readonly) NSValue* visibleCharacterRange; | 68 @property(nonatomic, readonly) NSValue* visibleCharacterRange; |
70 @property(nonatomic, readonly) NSNumber* visited; | 69 @property(nonatomic, readonly) NSNumber* visited; |
71 @property(nonatomic, readonly) id window; | 70 @property(nonatomic, readonly) id window; |
72 @end | 71 @end |
73 | 72 |
74 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_ | 73 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_ |
OLD | NEW |