| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 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 UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ | 5 #ifndef UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ |
| 6 #define UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ | 6 #define UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ |
| 7 | 7 |
| 8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 9 #include "ui/accessibility/ax_export.h" | 9 #include "ui/accessibility/ax_export.h" |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 AtkUtilAuraLinux(); | 25 AtkUtilAuraLinux(); |
| 26 virtual ~AtkUtilAuraLinux(); | 26 virtual ~AtkUtilAuraLinux(); |
| 27 | 27 |
| 28 void Initialize(scoped_refptr<base::TaskRunner> init_task_runner); | 28 void Initialize(scoped_refptr<base::TaskRunner> init_task_runner); |
| 29 | 29 |
| 30 private: | 30 private: |
| 31 friend struct base::DefaultSingletonTraits<AtkUtilAuraLinux>; | 31 friend struct base::DefaultSingletonTraits<AtkUtilAuraLinux>; |
| 32 | 32 |
| 33 void CheckIfAccessibilityIsEnabledOnFileThread(); | 33 void CheckIfAccessibilityIsEnabledOnFileThread(); |
| 34 bool CheckPlatformAccessibilitySupportOnFileThread(); | |
| 35 void FinishAccessibilityInitOnUIThread(); | 34 void FinishAccessibilityInitOnUIThread(); |
| 36 | 35 |
| 37 #if defined(USE_GCONF) | 36 #if defined(USE_GCONF) |
| 38 bool is_enabled_; | 37 bool is_enabled_; |
| 39 #endif | 38 #endif |
| 40 }; | 39 }; |
| 41 | 40 |
| 42 } // namespace ui | 41 } // namespace ui |
| 43 | 42 |
| 44 #endif // UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ | 43 #endif // UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ |
| OLD | NEW |