| 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 50293e3b358db706f436ddcb59a6d77d5b13d950..b9c83a3123a3b3093f186c5c51f24c068c682d54 100644
|
| --- a/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
|
| +++ b/chrome/browser/autocomplete/autocomplete_edit_view_gtk.h
|
| @@ -271,6 +271,11 @@ class AutocompleteEditViewGtk : public AutocompleteEditView,
|
| }
|
| void HandleBackSpace();
|
|
|
| + static void HandleCopyClipboardThunk(GtkTextView* text_view, gpointer self) {
|
| + reinterpret_cast<AutocompleteEditViewGtk*>(self)->HandleCopyClipboard();
|
| + }
|
| + void HandleCopyClipboard();
|
| +
|
| // Actual implementation of SelectAll(), but also provides control over
|
| // whether the PRIMARY selection is set to the selected text (in SelectAll(),
|
| // it isn't, but we want set the selection when the user clicks in the entry).
|
|
|