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.h | |
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.h')
-rw-r--r-- | ui/gfx/canvas.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gfx/canvas.h b/ui/gfx/canvas.h index 6179981..5c7bb9f 100644 --- a/ui/gfx/canvas.h +++ b/ui/gfx/canvas.h @@ -14,6 +14,7 @@ #include "skia/ext/platform_canvas.h" #include "ui/gfx/image/image_skia.h" #include "ui/gfx/native_widget_types.h" +#include "ui/gfx/shadow_value.h" class SkBitmap; @@ -27,7 +28,6 @@ class Brush; class Rect; class Font; class Point; -class ShadowValue; class Size; // Canvas is a SkCanvas wrapper that provides a number of methods for @@ -306,7 +306,7 @@ class UI_EXPORT Canvas { SkColor color, const gfx::Rect& text_bounds, int flags, - const std::vector<ShadowValue>& shadows); + const ShadowValues& shadows); // Draws a dotted gray rectangle used for focus purposes. void DrawFocusRect(const gfx::Rect& rect); |