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 |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..16c9777f9afeabc61b9f589dc040b3844118107c |
| --- /dev/null |
| +++ b/ui/accessibility/platform/atk_util_auralinux.h |
| @@ -0,0 +1,30 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ |
| +#define UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ |
| + |
| +#include "base/memory/singleton.h" |
| +#include "ui/accessibility/ax_export.h" |
| + |
| +namespace ui { |
| + |
| +// This singleton class initializes ATK (accessibility toolkit) and |
| +// registers an implementation of the AtkUtil class, a global class that |
| +// every accessible application needs to register once. |
| +class AtkUtilAuraLinux { |
| +public: |
|
Peter Lundblad
2015/03/11 14:58:21
nit: indent
dmazzoni
2015/03/11 18:39:52
Done.
|
| + // Get the single instance of this class. |
| + static AtkUtilAuraLinux* GetInstance(); |
| + |
| + AtkUtilAuraLinux(); |
| + virtual ~AtkUtilAuraLinux(); |
| + |
| + private: |
| + friend struct DefaultSingletonTraits<AtkUtilAuraLinux>; |
| +}; |
| + |
| +} // namespace ui |
| + |
| +#endif // UI_ACCESSIBILITY_AX_UTIL_AURALINUX_H_ |