summaryrefslogtreecommitdiffstats
path: root/ui/gfx/platform_font_mac.mm
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-09 03:32:36 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-09 03:32:36 +0000
commit031ffedfe4071b177730c84361b930aed072c09c (patch)
tree3065c8052ea5023a91e29a272f0c3afd1c205911 /ui/gfx/platform_font_mac.mm
parent238083df6afe5e7426ab7ff2553d53f9a4dae562 (diff)
downloadchromium_src-031ffedfe4071b177730c84361b930aed072c09c.zip
chromium_src-031ffedfe4071b177730c84361b930aed072c09c.tar.gz
chromium_src-031ffedfe4071b177730c84361b930aed072c09c.tar.bz2
ui/gfx: Use base::string16 now that string16 was moved into base namespace.
base/string16.h was moved into base namespace in r191198 by Brett. BUG=None TBR=ben@chromium.org NOTRY=true Review URL: https://chromiumcodereview.appspot.com/16051006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205096 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/platform_font_mac.mm')
-rw-r--r--ui/gfx/platform_font_mac.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gfx/platform_font_mac.mm b/ui/gfx/platform_font_mac.mm
index 7da2ec9..eff0c0f 100644
--- a/ui/gfx/platform_font_mac.mm
+++ b/ui/gfx/platform_font_mac.mm
@@ -63,7 +63,7 @@ int PlatformFontMac::GetAverageCharacterWidth() const {
return average_width_;
}
-int PlatformFontMac::GetStringWidth(const string16& text) const {
+int PlatformFontMac::GetStringWidth(const base::string16& text) const {
return Canvas::GetStringWidth(text,
Font(const_cast<PlatformFontMac*>(this)));
}