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

Unified Diff: chrome/browser/autocomplete/autocomplete_edit_view_gtk.h

Issue 99218: The "size-request" event is run-first, clean up the Omnibox handler. (Closed)
Patch Set: Created 11 years, 8 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 | « no previous file | chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698