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" | |
17 #include "ui/accessibility/platform/atk_util_auralinux.h" | 16 #include "ui/accessibility/platform/atk_util_auralinux.h" |
18 #include "ui/accessibility/platform/ax_platform_node_auralinux.h" | 17 #include "ui/accessibility/platform/ax_platform_node_auralinux.h" |
19 | 18 |
20 namespace { | 19 namespace { |
21 | 20 |
22 typedef void (*gnome_accessibility_module_init)(); | 21 typedef void (*gnome_accessibility_module_init)(); |
23 | 22 |
24 const char kAtkBridgePath[] = "gtk-2.0/modules/libatk-bridge.so"; | 23 const char kAtkBridgePath[] = "gtk-2.0/modules/libatk-bridge.so"; |
25 const char kAtkBridgeSymbolName[] = "gnome_accessibility_module_init"; | 24 const char kAtkBridgeSymbolName[] = "gnome_accessibility_module_init"; |
26 | 25 |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 | 237 |
239 void AtkUtilAuraLinux::CheckIfAccessibilityIsEnabledOnFileThread() { | 238 void AtkUtilAuraLinux::CheckIfAccessibilityIsEnabledOnFileThread() { |
240 } | 239 } |
241 | 240 |
242 void AtkUtilAuraLinux::FinishAccessibilityInitOnUIThread() { | 241 void AtkUtilAuraLinux::FinishAccessibilityInitOnUIThread() { |
243 } | 242 } |
244 | 243 |
245 #endif // defined(USE_GCONF) | 244 #endif // defined(USE_GCONF) |
246 | 245 |
247 } // namespace ui | 246 } // namespace ui |
OLD | NEW |