OLD | NEW |
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_MAC_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ |
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <utility> | 9 #include <utility> |
11 #include <vector> | 10 #include <vector> |
12 | 11 |
13 #include "base/memory/scoped_nsobject.h" | 12 #include "base/memory/scoped_nsobject.h" |
14 #include "content/browser/accessibility/browser_accessibility.h" | 13 #include "content/browser/accessibility/browser_accessibility.h" |
15 | 14 |
16 @class BrowserAccessibilityCocoa; | 15 @class BrowserAccessibilityCocoa; |
17 | 16 |
(...skipping 20 matching lines...) Expand all Loading... |
38 | 37 |
39 // Allows access to the BrowserAccessibilityCocoa which wraps this. | 38 // Allows access to the BrowserAccessibilityCocoa which wraps this. |
40 // BrowserAccessibility. | 39 // BrowserAccessibility. |
41 // We own this object until our manager calls ReleaseReference; | 40 // We own this object until our manager calls ReleaseReference; |
42 // thereafter, the cocoa object owns us. | 41 // thereafter, the cocoa object owns us. |
43 BrowserAccessibilityCocoa* browser_accessibility_cocoa_; | 42 BrowserAccessibilityCocoa* browser_accessibility_cocoa_; |
44 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityMac); | 43 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityMac); |
45 }; | 44 }; |
46 | 45 |
47 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ | 46 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ |
OLD | NEW |