Skip to content
Closed
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
--- a/content/browser/accessibility/browser_accessibility_manager_gtk.cc 2013-05-26 00:43:54.000000000 +0200
+++ b/content/browser/accessibility/browser_accessibility_manager_gtk.cc 2013-12-14 15:45:44.251138663 +0100
@@ -55,11 +55,9 @@
RecursivelySendChildrenChanged(GetRoot()->ToBrowserAccessibilityGtk());
break;
case AccessibilityNotificationFocusChanged:
- // 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
- g_signal_emit_by_name(atk_object, "focus-event", true);
- atk_focus_tracker_notify(atk_object);
+ // 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);
break;
default:
break;
1 change: 1 addition & 0 deletions recipes-browser/chromium/chromium_29.0.1518.2.bb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ SRC_URI = "\
file://google-chrome \
file://google-chrome.desktop \
file://uninitialised-warning.patch \
file://001-atk_focus_tracker_notify_deprecated_since_ATK_2_9_4.patch \
"
SRC_URI[md5sum] = "2480c3fd109ef000575629acb8a906ca"
SRC_URI[sha256sum] = "7f08624f7d9bd120de0043da7ee09985ae6b6990d22d8c1b1f7c66fd4ed681a1"
Expand Down
3 changes: 2 additions & 1 deletion recipes-devtools/ninja/ninja-native_1.4.0.bb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ inherit native
LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e"

SRCREV="63d5b1013cafb2db95687cf446eb5bb68cf6a27a"
SRCBRANCH="release"

SRC_URI = "git://github.com/martine/ninja.git"
SRC_URI = "git://github.com/martine/ninja.git;branch=${SRCBRANCH}"

S="${WORKDIR}/git"

Expand Down