| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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_AURALINUX_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_ |
| 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_ |
| 7 | 7 |
| 8 #include <atk/atk.h> | 8 #include <atk/atk.h> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "content/browser/accessibility/browser_accessibility.h" | 12 #include "content/browser/accessibility/browser_accessibility.h" |
| 13 #include "content/common/content_export.h" |
| 13 | 14 |
| 14 namespace content { | 15 namespace content { |
| 15 | 16 |
| 16 class BrowserAccessibilityAuraLinux; | 17 class BrowserAccessibilityAuraLinux; |
| 17 class BrowserAccessibilityManagerAuraLinux; | 18 class BrowserAccessibilityManagerAuraLinux; |
| 18 | 19 |
| 19 G_BEGIN_DECLS | 20 G_BEGIN_DECLS |
| 20 | 21 |
| 21 #define BROWSER_ACCESSIBILITY_TYPE (browser_accessibility_get_type()) | 22 #define BROWSER_ACCESSIBILITY_TYPE (browser_accessibility_get_type()) |
| 22 #define BROWSER_ACCESSIBILITY(obj) \ | 23 #define BROWSER_ACCESSIBILITY(obj) \ |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 friend class BrowserAccessibility; | 82 friend class BrowserAccessibility; |
| 82 | 83 |
| 83 AtkObject* atk_object_; | 84 AtkObject* atk_object_; |
| 84 AtkRole atk_role_; | 85 AtkRole atk_role_; |
| 85 int interface_mask_; | 86 int interface_mask_; |
| 86 | 87 |
| 87 private: | 88 private: |
| 88 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityAuraLinux); | 89 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityAuraLinux); |
| 89 }; | 90 }; |
| 90 | 91 |
| 92 CONTENT_EXPORT const BrowserAccessibilityAuraLinux* |
| 93 ToBrowserAccessibilityAuraLinux(const BrowserAccessibility* obj); |
| 94 |
| 95 CONTENT_EXPORT BrowserAccessibilityAuraLinux* ToBrowserAccessibilityAuraLinux( |
| 96 BrowserAccessibility* obj); |
| 97 |
| 91 } // namespace content | 98 } // namespace content |
| 92 | 99 |
| 93 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_ | 100 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_AURALINUX_H_ |
| OLD | NEW |