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

Side by Side Diff: content/browser/accessibility/browser_accessibility_cocoa.h

Issue 17593006: mac: Update clients of scoped_nsobject.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: iwyu, scoped_nsprotocol Created 7 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 #import "base/memory/scoped_nsobject.h" 10 #import "base/mac/scoped_nsobject.h"
11 #include "content/browser/accessibility/browser_accessibility.h"
11 #import "content/browser/accessibility/browser_accessibility_delegate_mac.h" 12 #import "content/browser/accessibility/browser_accessibility_delegate_mac.h"
12 #include "content/browser/accessibility/browser_accessibility.h"
13 #include "content/common/accessibility_node_data.h" 13 #include "content/common/accessibility_node_data.h"
14 14
15 // BrowserAccessibilityCocoa is a cocoa wrapper around the BrowserAccessibility 15 // BrowserAccessibilityCocoa is a cocoa wrapper around the BrowserAccessibility
16 // object. The renderer converts webkit's accessibility tree into a 16 // object. The renderer converts webkit's accessibility tree into a
17 // WebAccessibility tree and passes it to the browser process over IPC. 17 // WebAccessibility tree and passes it to the browser process over IPC.
18 // This class converts it into a format Cocoa can query. 18 // This class converts it into a format Cocoa can query.
19 @interface BrowserAccessibilityCocoa : NSObject { 19 @interface BrowserAccessibilityCocoa : NSObject {
20 @private 20 @private
21 content::BrowserAccessibility* browserAccessibility_; 21 content::BrowserAccessibility* browserAccessibility_;
22 scoped_nsobject<NSMutableArray> children_; 22 base::scoped_nsobject<NSMutableArray> children_;
23 id<BrowserAccessibilityDelegateCocoa> delegate_; 23 id<BrowserAccessibilityDelegateCocoa> delegate_;
24 } 24 }
25 25
26 // This creates a cocoa browser accessibility object around 26 // This creates a cocoa browser accessibility object around
27 // the cross platform BrowserAccessibility object. The delegate is 27 // the cross platform BrowserAccessibility object. The delegate is
28 // used to communicate with the host renderer. None of these 28 // used to communicate with the host renderer. None of these
29 // parameters can be null. 29 // parameters can be null.
30 - (id)initWithObject:(content::BrowserAccessibility*)accessibility 30 - (id)initWithObject:(content::BrowserAccessibility*)accessibility
31 delegate:(id<BrowserAccessibilityDelegateCocoa>)delegate; 31 delegate:(id<BrowserAccessibilityDelegateCocoa>)delegate;
32 32
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 @property(nonatomic, readonly) NSString* valueDescription; 103 @property(nonatomic, readonly) NSString* valueDescription;
104 @property(nonatomic, readonly) NSValue* visibleCharacterRange; 104 @property(nonatomic, readonly) NSValue* visibleCharacterRange;
105 @property(nonatomic, readonly) NSArray* visibleCells; 105 @property(nonatomic, readonly) NSArray* visibleCells;
106 @property(nonatomic, readonly) NSArray* visibleColumns; 106 @property(nonatomic, readonly) NSArray* visibleColumns;
107 @property(nonatomic, readonly) NSArray* visibleRows; 107 @property(nonatomic, readonly) NSArray* visibleRows;
108 @property(nonatomic, readonly) NSNumber* visited; 108 @property(nonatomic, readonly) NSNumber* visited;
109 @property(nonatomic, readonly) id window; 109 @property(nonatomic, readonly) id window;
110 @end 110 @end
111 111
112 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_ 112 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_COCOA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698