Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(842)

Unified Diff: chrome/browser/ui/cocoa/find_bar_bridge.mm

Issue 5553002: Fix Find regression where text is not selected once you... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698