Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Unified Diff: content/browser/accessibility/browser_accessibility_manager.cc

Issue 1128183010: ATK accessibility support for web content on Aura Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing nits Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/accessibility/browser_accessibility_manager.cc
diff --git a/content/browser/accessibility/browser_accessibility_manager.cc b/content/browser/accessibility/browser_accessibility_manager.cc
index 15c1a35cedaa6c765380ca3c0d862324ebe3ff36..6aaf25575c926e45dda8026e5b6519a93dbd7bb0 100644
--- a/content/browser/accessibility/browser_accessibility_manager.cc
+++ b/content/browser/accessibility/browser_accessibility_manager.cc
@@ -58,11 +58,12 @@ BrowserAccessibilityFindInPageInfo::BrowserAccessibilityFindInPageInfo()
end_offset(-1),
active_request_id(-1) {}
-#if !defined(OS_MACOSX) && \
- !defined(OS_WIN) && \
- !defined(OS_ANDROID) \
-// We have subclassess of BrowserAccessibilityManager on Mac, and Win. For any
-// other platform, instantiate the base class.
+#if !defined(OS_WIN) && \
+ !defined(OS_MACOSX) && \
+ !defined(OS_ANDROID) && \
+ !(defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(USE_X11))
+// We have subclassess of BrowserAccessibility on some platforms.
+// For other platforms, instantiate the base class.
// static
BrowserAccessibilityManager* BrowserAccessibilityManager::Create(
const ui::AXTreeUpdate& initial_tree,

Powered by Google App Engine
This is Rietveld 408576698