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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/cocoa/find_bar_bridge.h" 5 #include "chrome/browser/ui/cocoa/find_bar_bridge.h"
6 6
7 #include "base/sys_string_conversions.h" 7 #include "base/sys_string_conversions.h"
8 #import "chrome/browser/ui/cocoa/find_bar_cocoa_controller.h" 8 #import "chrome/browser/ui/cocoa/find_bar_cocoa_controller.h"
9 9
10 // static 10 // static
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 string16 FindBarBridge::GetFindText() { 89 string16 FindBarBridge::GetFindText() {
90 // This function is currently only used in Windows and Linux specific browser 90 // This function is currently only used in Windows and Linux specific browser
91 // tests (testing prepopulate values that Mac's don't rely on), but if we add 91 // tests (testing prepopulate values that Mac's don't rely on), but if we add
92 // more tests that are non-platform specific, we need to flesh out this 92 // more tests that are non-platform specific, we need to flesh out this
93 // function. 93 // function.
94 NOTIMPLEMENTED(); 94 NOTIMPLEMENTED();
95 return string16(); 95 return string16();
96 } 96 }
97 97
98 string16 FindBarBridge::GetFindSelectedText() {
99 // This function is currently only used in Windows and Linux specific browser
100 // tests (testing prepopulate values that Mac's don't rely on), but if we add
101 // more tests that are non-platform specific, we need to flesh out this
102 // function.
103 NOTIMPLEMENTED();
104 return string16();
105 }
106
98 string16 FindBarBridge::GetMatchCountText() { 107 string16 FindBarBridge::GetMatchCountText() {
99 // This function is currently only used in Windows and Linux specific browser 108 // This function is currently only used in Windows and Linux specific browser
100 // tests (testing prepopulate values that Mac's don't rely on), but if we add 109 // tests (testing prepopulate values that Mac's don't rely on), but if we add
101 // more tests that are non-platform specific, we need to flesh out this 110 // more tests that are non-platform specific, we need to flesh out this
102 // function. 111 // function.
103 NOTIMPLEMENTED(); 112 NOTIMPLEMENTED();
104 return string16(); 113 return string16();
105 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698