Index: chrome/browser/ui/cocoa/find_bar_bridge.mm |
=================================================================== |
--- chrome/browser/ui/cocoa/find_bar_bridge.mm (revision 68336) |
+++ chrome/browser/ui/cocoa/find_bar_bridge.mm (working copy) |
@@ -95,6 +95,15 @@ |
return string16(); |
} |
+string16 FindBarBridge::GetFindSelectedText() { |
+ // This function is currently only used in Windows and Linux specific browser |
+ // tests (testing prepopulate values that Mac's don't rely on), but if we add |
+ // more tests that are non-platform specific, we need to flesh out this |
+ // function. |
+ NOTIMPLEMENTED(); |
+ return string16(); |
+} |
+ |
string16 FindBarBridge::GetMatchCountText() { |
// This function is currently only used in Windows and Linux specific browser |
// tests (testing prepopulate values that Mac's don't rely on), but if we add |