summaryrefslogtreecommitdiffstats
path: root/base/string_util.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-14 15:53:13 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-14 15:53:13 +0000
commitc07cfb808dbd642bb3385f974be296797bd34524 (patch)
tree2834f7923f749d5fdc1246888ca7caf5b0cf507f /base/string_util.h
parenta68b966e94845efaa30dae71f4ca7c324eba57b9 (diff)
downloadchromium_src-c07cfb808dbd642bb3385f974be296797bd34524.zip
chromium_src-c07cfb808dbd642bb3385f974be296797bd34524.tar.gz
chromium_src-c07cfb808dbd642bb3385f974be296797bd34524.tar.bz2
Add match count text to the GTK find bar. This also makes the bar wider.
The match count text doesn't currently show up realiably because the data in the find reply is bad. I believe this is bug 11761. The clicker checking code has been moved to the cross-platform FindBarController so it doesn't have to be duplicated for each platform. This also add IntToString16. I didnt add all the variants now. The *Wstring versions should all eventually be changed to string16. http://crbug.com/11750 Review URL: http://codereview.chromium.org/114023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/string_util.h')
-rw-r--r--base/string_util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/string_util.h b/base/string_util.h
index 84cb6e5..7df1d92 100644
--- a/base/string_util.h
+++ b/base/string_util.h
@@ -405,6 +405,7 @@ void ReplaceSubstringsAfterOffset(std::string* str,
// Specialized string-conversion functions.
std::string IntToString(int value);
std::wstring IntToWString(int value);
+string16 IntToString16(int value);
std::string UintToString(unsigned int value);
std::wstring UintToWString(unsigned int value);
std::string Int64ToString(int64 value);