| 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 AtkObject* parent_object, | 21 AtkObject* parent_object, |
| 22 const ui::AXTreeUpdate& initial_tree, | 22 const ui::AXTreeUpdate& initial_tree, |
| 23 BrowserAccessibilityDelegate* delegate, | 23 BrowserAccessibilityDelegate* delegate, |
| 24 BrowserAccessibilityFactory* factory = new BrowserAccessibilityFactory()); | 24 BrowserAccessibilityFactory* factory = new BrowserAccessibilityFactory()); |
| 25 | 25 |
| 26 ~BrowserAccessibilityManagerAuraLinux() override; | 26 ~BrowserAccessibilityManagerAuraLinux() override; |
| 27 | 27 |
| 28 static ui::AXTreeUpdate GetEmptyDocument(); | 28 static ui::AXTreeUpdate GetEmptyDocument(); |
| 29 | 29 |
| 30 // Implementation BrowserAccessibilityManager methods | 30 // Implementation BrowserAccessibilityManager methods |
| 31 void NotifyAccessibilityEvent(ui::AXEvent event_type, | 31 void NotifyAccessibilityEvent( |
| 32 BrowserAccessibility* node) override; | 32 BrowserAccessibilityEvent::Source source, |
| 33 ui::AXEvent event_type, |
| 34 BrowserAccessibility* node) override; |
| 33 | 35 |
| 34 AtkObject* parent_object() { return parent_object_; } | 36 AtkObject* parent_object() { return parent_object_; } |
| 35 | 37 |
| 36 private: | 38 private: |
| 37 AtkObject* parent_object_; | 39 AtkObject* parent_object_; |
| 38 | 40 |
| 39 // Give BrowserAccessibilityManager::Create access to our constructor. | 41 // Give BrowserAccessibilityManager::Create access to our constructor. |
| 40 friend class BrowserAccessibilityManager; | 42 friend class BrowserAccessibilityManager; |
| 41 | 43 |
| 42 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerAuraLinux); | 44 DISALLOW_COPY_AND_ASSIGN(BrowserAccessibilityManagerAuraLinux); |
| 43 }; | 45 }; |
| 44 | 46 |
| 45 } // namespace content | 47 } // namespace content |
| 46 | 48 |
| 47 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_AURALINUX
_H_ | 49 #endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_MANAGER_AURALINUX
_H_ |
| OLD | NEW |