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

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

Issue 7065040: Revert 86489 (SkScalara asserts on Mac unit_tests) - 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
===================================================================
--- chrome/common/extensions/extension_action.cc (revision 86494)
+++ chrome/common/extensions/extension_action.cc (working copy)
@@ -147,8 +147,8 @@
if (badge_width >= kCenterAlignThreshold) {
rect.fLeft = SkIntToScalar(
SkScalarFloor(SkIntToScalar(bounds.x()) +
- SkIntToScalar(bounds.width() / 2) -
- SkIntToScalar(badge_width / 2)));
+ SkIntToScalar(bounds.width() / 2.0) -
+ SkIntToScalar(badge_width / 2.0)));
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