OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |