Chromium Code Reviews| Index: chrome/browser/ui/cocoa/find_bar/find_bar_text_field.mm |
| diff --git a/chrome/browser/ui/cocoa/find_bar/find_bar_text_field.mm b/chrome/browser/ui/cocoa/find_bar/find_bar_text_field.mm |
| index 2b4c3e70a0c51df12633ff8b4136fe0bd5394936..fc38f91ce93efb98799a3aab1c919df3de79cd23 100644 |
| --- a/chrome/browser/ui/cocoa/find_bar/find_bar_text_field.mm |
| +++ b/chrome/browser/ui/cocoa/find_bar/find_bar_text_field.mm |
| @@ -50,4 +50,11 @@ |
| [textView setEnabledTextCheckingTypes:checkingTypes]; |
| } |
| +// Implemented to allow the findbar to respond to "Paste and Match Style" menu |
| +// commands. |
| +- (void)pasteAndMatchStyle:(id)sender { |
| + [[self currentEditor] paste:sender]; |
| +} |
| + |
|
Robert Sesek
2015/04/15 15:15:01
nit: extra blank line
|
| + |
| @end |