| Index: views/controls/native/native_view_host_gtk.h
|
| diff --git a/views/controls/native/native_view_host_gtk.h b/views/controls/native/native_view_host_gtk.h
|
| index 70cf438565d91246d9d73b4224be379f09aef4ad..81a2a7a1dfd1f557a4ba32c79f7671def95acbbc 100644
|
| --- a/views/controls/native/native_view_host_gtk.h
|
| +++ b/views/controls/native/native_view_host_gtk.h
|
| @@ -54,6 +54,11 @@ class NativeViewHostGtk : public NativeViewHostWrapper {
|
| // Invoked from the 'destroy' signal.
|
| static void CallDestroy(GtkObject* object, NativeViewHostGtk* host);
|
|
|
| + // Invoked from the 'focus-in-event' signal.
|
| + static void CallFocusIn(GtkWidget* widget,
|
| + GdkEventFocus* event,
|
| + NativeViewHostGtk* button);
|
| +
|
| // Our associated NativeViewHost.
|
| NativeViewHost* host_;
|
|
|
| @@ -68,6 +73,9 @@ class NativeViewHostGtk : public NativeViewHostWrapper {
|
| // Signal handle id for 'destroy' signal.
|
| gulong destroy_signal_id_;
|
|
|
| + // Signal handle id for 'focus-in-event' signal.
|
| + gulong focus_signal_id_;
|
| +
|
| // The GtkFixed that contains the attached gfx::NativeView (used for
|
| // clipping).
|
| GtkWidget* fixed_;
|
|
|