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_MANAGER_AURALINUX_H_ | 5 #ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_AURALINUX_H_ |
6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_AURALINUX_H_ | 6 #define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_AURALINUX_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "content/browser/accessibility/browser_accessibility_manager.h" | 9 #include "content/browser/accessibility/browser_accessibility_manager.h" |
10 | 10 |
11 struct ViewHostMsg_AccessibilityNotification_Params; | |
12 | |
13 namespace content { | 11 namespace content { |
14 class BrowserAccessibilityAuraLinux; | 12 class BrowserAccessibilityAuraLinux; |
15 | 13 |
16 // Manages a tree of BrowserAccessibilityAuraLinux objects. | 14 // Manages a tree of BrowserAccessibilityAuraLinux objects. |
17 class CONTENT_EXPORT BrowserAccessibilityManagerAuraLinux | 15 class CONTENT_EXPORT BrowserAccessibilityManagerAuraLinux |
18 : public BrowserAccessibilityManager { | 16 : public BrowserAccessibilityManager { |
19 public: | 17 public: |
20 BrowserAccessibilityManagerAuraLinux( | 18 BrowserAccessibilityManagerAuraLinux( |
21 AtkObject* parent_object, | 19 AtkObject* parent_object, |
22 const ui::AXTreeUpdate& initial_tree, | 20 const ui::AXTreeUpdate& initial_tree, |
(...skipping 17 matching lines...) Expand all Loading... |
40 | 38 |
41 // Give BrowserAccessibilityManager::Create access to our constructor. | 39 // Give BrowserAccessibilityManager::Create access to our constructor. |
42 friend class BrowserAccessibilityManager; | 40 friend class BrowserAccessibilityManager; |
43 | 41 |
44 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerAuraLinux); | 42 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerAuraLinux); |
45 }; | 43 }; |
46 | 44 |
47 } // namespace content | 45 } // namespace content |
48 | 46 |
49 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_AURALINUX
_H_ | 47 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_AURALINUX
_H_ |
OLD | NEW |