diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-25 19:06:33 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-25 19:06:33 +0000 |
commit | d289d0bf93b5498e2ee10822073ceb67b4e45e5d (patch) | |
tree | 019d12baab353449be90fc63754e5d89c02e965d /chrome/common/extensions/extension_action.cc | |
parent | 2f79d25bb1773a264e9effe527be3811f3a6d178 (diff) | |
download | chromium_src-d289d0bf93b5498e2ee10822073ceb67b4e45e5d.zip chromium_src-d289d0bf93b5498e2ee10822073ceb67b4e45e5d.tar.gz chromium_src-d289d0bf93b5498e2ee10822073ceb67b4e45e5d.tar.bz2 |
Cleanup: Break some common->app dependencies.
BUG=46666
TEST=none
Review URL: http://codereview.chromium.org/2821010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50875 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/extension_action.cc')
-rw-r--r-- | chrome/common/extensions/extension_action.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/extension_action.cc b/chrome/common/extensions/extension_action.cc index 9951ba6..dbdae7f 100644 --- a/chrome/common/extensions/extension_action.cc +++ b/chrome/common/extensions/extension_action.cc @@ -8,7 +8,6 @@ #include "app/resource_bundle.h" #include "base/utf_string_conversions.h" -#include "chrome/app/chrome_dll_resource.h" #include "gfx/canvas_skia.h" #include "gfx/font.h" #include "gfx/rect.h" @@ -158,7 +157,8 @@ void ExtensionAction::PaintBadge(gfx::Canvas* canvas, rect_paint.setStyle(SkPaint::kFill_Style); rect_paint.setAntiAlias(true); rect_paint.setColor(background_color); - canvas->AsCanvasSkia()->drawRoundRect(rect, SkIntToScalar(2), SkIntToScalar(2), + canvas->AsCanvasSkia()->drawRoundRect(rect, SkIntToScalar(2), + SkIntToScalar(2), rect_paint); // Overlay the gradient. It is stretchy, so we do this in three parts. |