Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: chrome/common/extensions/extension_action.cc

Issue 7067031: roll skia 1402:1410 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/views/create_application_shortcut_view.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension_action.cc
diff --git a/chrome/common/extensions/extension_action.cc b/chrome/common/extensions/extension_action.cc
index 0cb4a0f0cce99c6e7d6a2fb608ee23e3e58016d9..b68da81218138e3a7386412140e4a05592c46160 100644
--- a/chrome/common/extensions/extension_action.cc
+++ b/chrome/common/extensions/extension_action.cc
@@ -147,8 +147,8 @@ void ExtensionAction::PaintBadge(gfx::Canvas* canvas,
if (badge_width >= kCenterAlignThreshold) {
rect.fLeft = SkIntToScalar(
SkScalarFloor(SkIntToScalar(bounds.x()) +
- SkIntToScalar(bounds.width() / 2.0) -
- SkIntToScalar(badge_width / 2.0)));
+ SkIntToScalar(bounds.width() / 2) -
+ SkIntToScalar(badge_width / 2)));
reed1 2011/05/24 21:09:45 I think we're losing the fraction part with this c
epoger 2011/05/24 21:16:21 I agree with Mike... either that, or... SkDoubleTo
Nico 2011/05/24 21:17:35 Will do.
rect.fRight = rect.fLeft + SkIntToScalar(badge_width);
} else {
rect.fRight = SkIntToScalar(bounds.right());
« no previous file with comments | « chrome/browser/ui/views/create_application_shortcut_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698