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 #include <atk/atk.h> | 5 #include <atk/atk.h> |
6 #if defined(USE_GCONF) | 6 #if defined(USE_GCONF) |
7 #include <gconf/gconf-client.h> | 7 #include <gconf/gconf-client.h> |
8 #endif | 8 #endif |
9 #include <glib-2.0/gmodule.h> | 9 #include <glib-2.0/gmodule.h> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/location.h" | 13 #include "base/location.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/memory/singleton.h" | 15 #include "base/memory/singleton.h" |
| 16 #include "base/task_runner.h" |
16 #include "ui/accessibility/platform/atk_util_auralinux.h" | 17 #include "ui/accessibility/platform/atk_util_auralinux.h" |
17 #include "ui/accessibility/platform/ax_platform_node_auralinux.h" | 18 #include "ui/accessibility/platform/ax_platform_node_auralinux.h" |
18 | 19 |
19 namespace { | 20 namespace { |
20 | 21 |
21 typedef void (*gnome_accessibility_module_init)(); | 22 typedef void (*gnome_accessibility_module_init)(); |
22 | 23 |
23 const char kAtkBridgePath[] = "gtk-2.0/modules/libatk-bridge.so"; | 24 const char kAtkBridgePath[] = "gtk-2.0/modules/libatk-bridge.so"; |
24 const char kAtkBridgeSymbolName[] = "gnome_accessibility_module_init"; | 25 const char kAtkBridgeSymbolName[] = "gnome_accessibility_module_init"; |
25 | 26 |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 | 238 |
238 void AtkUtilAuraLinux::CheckIfAccessibilityIsEnabledOnFileThread() { | 239 void AtkUtilAuraLinux::CheckIfAccessibilityIsEnabledOnFileThread() { |
239 } | 240 } |
240 | 241 |
241 void AtkUtilAuraLinux::FinishAccessibilityInitOnUIThread() { | 242 void AtkUtilAuraLinux::FinishAccessibilityInitOnUIThread() { |
242 } | 243 } |
243 | 244 |
244 #endif // defined(USE_GCONF) | 245 #endif // defined(USE_GCONF) |
245 | 246 |
246 } // namespace ui | 247 } // namespace ui |
OLD | NEW |