diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-10 23:54:20 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-10 23:54:20 +0000 |
commit | ce494a316fe0f80de3271fe2710691f14a9c44e1 (patch) | |
tree | 085de99b28ea75b111271f7b874cbcbef34e4e34 /base/string_util.cc | |
parent | ac577490a5c20950f63d655de37058dc41486e99 (diff) | |
download | chromium_src-ce494a316fe0f80de3271fe2710691f14a9c44e1.zip chromium_src-ce494a316fe0f80de3271fe2710691f14a9c44e1.tar.gz chromium_src-ce494a316fe0f80de3271fe2710691f14a9c44e1.tar.bz2 |
GTK: Implement BlockedPopupContainerView for linux.
This doesn't have:
- rounded corners
- gradient background
- animating in or out.
- graphical polish
but it is fucntionally complete.
http://crbug.com/12843
Review URL: http://codereview.chromium.org/118480
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18113 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/string_util.cc')
-rw-r--r-- | base/string_util.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/string_util.cc b/base/string_util.cc index 2998d2b..2699f26 100644 --- a/base/string_util.cc +++ b/base/string_util.cc @@ -1061,6 +1061,10 @@ std::wstring UintToWString(unsigned int value) { return IntToStringT<std::wstring, unsigned int, unsigned int, false>:: IntToString(value); } +string16 UintToString16(unsigned int value) { + return IntToStringT<string16, unsigned int, unsigned int, false>:: + IntToString(value); +} std::string Int64ToString(int64 value) { return IntToStringT<std::string, int64, uint64, true>:: IntToString(value); |