| 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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 // Allows access to the BrowserAccessibilityCocoa which wraps this. | 41 // Allows access to the BrowserAccessibilityCocoa which wraps this. |
| 42 // BrowserAccessibility. | 42 // BrowserAccessibility. |
| 43 // We own this object until our manager calls ReleaseReference; | 43 // We own this object until our manager calls ReleaseReference; |
| 44 // thereafter, the cocoa object owns us. | 44 // thereafter, the cocoa object owns us. |
| 45 BrowserAccessibilityCocoa* browser_accessibility_cocoa_; | 45 BrowserAccessibilityCocoa* browser_accessibility_cocoa_; |
| 46 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityMac); | 46 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityMac); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace content | 49 } // namespace content |
| 50 | 50 |
| 51 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ | 51 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MAC_H_ |
| OLD | NEW |