| Index: chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
|
| diff --git a/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h b/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
|
| index 33af52de725f5b35d23d1c4897c8d592a014f52c..637cd877b568cb5f4f9504704c9b9786a82428c3 100644
|
| --- a/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
|
| +++ b/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
|
| @@ -160,13 +160,13 @@ class AutocompleteEditViewGtk : public AutocompleteEditView {
|
| gint count,
|
| gboolean extendion_selection);
|
|
|
| - static gboolean HandleViewSizeRequestThunk(GtkWidget* view,
|
| - GtkRequisition* req,
|
| - gpointer self) {
|
| - return reinterpret_cast<AutocompleteEditViewGtk*>(self)->
|
| + static void HandleViewSizeRequestThunk(GtkWidget* view,
|
| + GtkRequisition* req,
|
| + gpointer self) {
|
| + reinterpret_cast<AutocompleteEditViewGtk*>(self)->
|
| HandleViewSizeRequest(req);
|
| }
|
| - gboolean HandleViewSizeRequest(GtkRequisition* req);
|
| + void HandleViewSizeRequest(GtkRequisition* req);
|
|
|
| // Get the character indices of the current selection. This honors
|
| // direction, cp_max is the insertion point, and cp_min is the bound.
|
|
|