diff options
author | xiyuan@chromium.org <xiyuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-29 23:09:19 +0000 |
---|---|---|
committer | xiyuan@chromium.org <xiyuan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-29 23:09:19 +0000 |
commit | 25650681e39822b75080f481a7ca6e7ad621ed34 (patch) | |
tree | 21e4c84788ad79c4ef045d49ca3ca0750849f590 /ui/gfx/canvas_linux.cc | |
parent | ff5297bf7967d900a9f202ec51b1eaf979f5ec79 (diff) | |
download | chromium_src-25650681e39822b75080f481a7ca6e7ad621ed34.zip chromium_src-25650681e39822b75080f481a7ca6e7ad621ed34.tar.gz chromium_src-25650681e39822b75080f481a7ca6e7ad621ed34.tar.bz2 |
Update std::vector<ShadowValue> to ShadowValues.
This is a follow-up clean up for http://crrev.com/139162.
BUG=none.
TEST=none.
Review URL: https://chromiumcodereview.appspot.com/10453057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139412 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/canvas_linux.cc')
-rw-r--r-- | ui/gfx/canvas_linux.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gfx/canvas_linux.cc b/ui/gfx/canvas_linux.cc index 18ce2a4..576eed2 100644 --- a/ui/gfx/canvas_linux.cc +++ b/ui/gfx/canvas_linux.cc @@ -249,7 +249,7 @@ void Canvas::DrawStringWithShadows(const string16& text, SkColor color, const gfx::Rect& text_bounds, int flags, - const std::vector<ShadowValue>& shadows) { + const ShadowValues& shadows) { DLOG_IF(WARNING, !shadows.empty()) << "Text shadow not implemented."; if (!IntersectsClipRect(text_bounds)) |