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

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

Issue 25166002: Fix build on Fedora 20. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Feedback from dmazzoni. Created 7 years, 3 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
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/accessibility/browser_accessibility_manager_gtk.cc
diff --git a/content/browser/accessibility/browser_accessibility_manager_gtk.cc b/content/browser/accessibility/browser_accessibility_manager_gtk.cc
index a6246c5e795bedc5d0f15a7dab8106392eb6b448..2b8bbfc042e1b680b406c2da02f9fcb60ae79c7a 100644
--- a/content/browser/accessibility/browser_accessibility_manager_gtk.cc
+++ b/content/browser/accessibility/browser_accessibility_manager_gtk.cc
@@ -56,11 +56,9 @@ void BrowserAccessibilityManagerGtk::NotifyAccessibilityEvent(
RecursivelySendChildrenChanged(GetRoot()->ToBrowserAccessibilityGtk());
break;
case WebKit::WebAXEventFocus:
- // Note: atk_focus_tracker_notify may be deprecated in the future;
- // follow this bug for the replacement:
- // https://bugzilla.gnome.org/show_bug.cgi?id=649575#c4
+ // Note: the focus-event was deprecated in ATK 2.9.4
+ // See https://bugzilla.gnome.org/show_bug.cgi?id=649575#c8
g_signal_emit_by_name(atk_object, "focus-event", true);
- atk_focus_tracker_notify(atk_object);
break;
default:
break;
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698