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

Side by Side Diff: third_party/instrumented_libraries/patches/libgtk2.0-0.precise.diff

Issue 2732353002: Instrumented libraries: Remove Precise support (Closed)
Patch Set: Rebase Created 3 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 diff -rupN ./gtk/gtkmain.c ../gtk+2.0-2.24.10-patched/gtk/gtkmain.c
2 --- ./gtk/gtkmain.c 2014-05-29 19:39:07.000000000 +0400
3 +++ ../gtk+2.0-2.24.10-patched/gtk/gtkmain.c 2015-02-09 21:52:59.213636172 +0 300
4 @@ -751,6 +751,10 @@ _overlay_scrollbar_init (void)
5 GModule *module = NULL;
6 gpointer symbol = NULL;
7
8 + /* Chrome doesn't use overlay-scrollbar anyway. By disabling it here, we avoi d
9 + * having to build it. */
10 + return;
11 +
12 gchar *flag = (gchar*) g_getenv ("LIBOVERLAY_SCROLLBAR");
13
14 /* check if LIBOVERLAY_SCROLLBAR is set to 0 or an empty value
15 diff -rupN ./gtk/gtkmenushell.h ../gtk+2.0-2.24.10-patched/gtk/gtkmenushell.h
16 --- ./gtk/gtkmenushell.h 2011-08-16 06:30:52.000000000 +0400
17 +++ ../gtk+2.0-2.24.10-patched/gtk/gtkmenushell.h 2015-02-09 21:49:49.0520 32041 +0300
18 @@ -135,7 +135,9 @@ void _gtk_menu_shell_update_mnemonic
19 void _gtk_menu_shell_set_keyboard_mode (GtkMenuShell *menu_shell,
20 gboolean keyboard_mode);
21 gboolean _gtk_menu_shell_get_keyboard_mode (GtkMenuShell *menu_shell);
22 -
23 +// https://bugs.launchpad.net/bugs/945135
24 +gboolean ubuntu_gtk_menu_shell_activate_mnemonic (GtkMenuShell *shell, GtkWidge t *item);
25 +gboolean ubuntu_gtk_menu_shell_activate_first (GtkMenuShell *menu_shell, gboole an search_sensitive);
26 G_END_DECLS
27
28 #endif /* __GTK_MENU_SHELL_H__ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698