summaryrefslogtreecommitdiff
path: root/chromium/ui/gfx/text_utils_skia.cc
blob: 08778640cc978393c0610d38b66bc11dd4c0fdc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/gfx/text_utils.h"

#include "ui/gfx/canvas.h"

namespace gfx {

int GetStringWidth(const std::u16string& text, const FontList& font_list) {
  return Canvas::GetStringWidth(text, font_list);
}

float GetStringWidthF(const std::u16string& text, const FontList& font_list) {
  return Canvas::GetStringWidthF(text, font_list);
}

}  // namespace gfx