Chromium Code Reviews| Index: ui/accessibility/platform/atk_util_auralinux.h |
| diff --git a/ui/accessibility/platform/atk_util_auralinux.h b/ui/accessibility/platform/atk_util_auralinux.h |
| index 349c41a53de07af1061fbb44f598efdb221be2e4..1786821a180fe24b702a04f34598f739ab188edd 100644 |
| --- a/ui/accessibility/platform/atk_util_auralinux.h |
| +++ b/ui/accessibility/platform/atk_util_auralinux.h |
| @@ -5,9 +5,14 @@ |
| #ifndef UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ |
| #define UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ |
| +#include "base/memory/scoped_ptr.h" |
| #include "base/memory/singleton.h" |
| #include "ui/accessibility/ax_export.h" |
| +namespace base { |
| +class Thread; |
| +} |
| + |
| namespace ui { |
| // This singleton class initializes ATK (accessibility toolkit) and |
| @@ -21,8 +26,12 @@ class AtkUtilAuraLinux { |
| AtkUtilAuraLinux(); |
| virtual ~AtkUtilAuraLinux(); |
| + void ShouldAccessibilityBeEnabled(); |
| + void CheckAtSpiIsEnabledProperty(); |
| + |
| private: |
| friend struct DefaultSingletonTraits<AtkUtilAuraLinux>; |
| + scoped_ptr<base::Thread> dbusThread_; |
|
dmazzoni
2015/04/15 16:48:35
this should be dbus_thread_
|
| }; |
| } // namespace ui |