| Index: chrome/views/controls/button/native_button.cc
|
| ===================================================================
|
| --- chrome/views/controls/button/native_button.cc (revision 12376)
|
| +++ chrome/views/controls/button/native_button.cc (working copy)
|
| @@ -138,6 +138,13 @@
|
| return false;
|
| }
|
|
|
| +void NativeButton::Focus() {
|
| + Button::Focus();
|
| + // Forward the focus to the wrapper.
|
| + if (native_wrapper_)
|
| + native_wrapper_->SetFocus();
|
| +}
|
| +
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // NativeButton, protected:
|
|
|
|
|