| Index: chrome/browser/ui/views/find_bar_view.cc
|
| ===================================================================
|
| --- chrome/browser/ui/views/find_bar_view.cc (revision 74326)
|
| +++ chrome/browser/ui/views/find_bar_view.cc (working copy)
|
| @@ -514,7 +514,7 @@
|
| if (find_bar_host()->MaybeForwardKeyEventToWebpage(key_event))
|
| return true; // Handled, we are done!
|
|
|
| - if (key_event.GetKeyCode() == ui::VKEY_RETURN) {
|
| + if (key_event.key_code() == ui::VKEY_RETURN) {
|
| // Pressing Return/Enter starts the search (unless text box is empty).
|
| string16 find_string = find_text_->text();
|
| if (!find_string.empty()) {
|
|
|