| Index: chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm b/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm
|
| index 6a5f597d93f95d3b18b216849c78c280b97d22ab..0abd499bd72b97f083f837e5ec9ebd35a7afc4c6 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm
|
| +++ b/chrome/browser/ui/cocoa/location_bar/security_state_bubble_decoration.mm
|
| @@ -174,7 +174,7 @@ void SecurityStateBubbleDecoration::DrawInFrame(NSRect frame,
|
|
|
| // Transform the coordinate system to adjust the baseline on Retina.
|
| // This is the only way to get fractional adjustments.
|
| - // gfx::ScopedNSGraphicsContextSaveGState save_graphics_state;
|
| + gfx::ScopedNSGraphicsContextSaveGState save_graphics_state;
|
| CGFloat line_width = [control_view cr_lineWidth];
|
| if (line_width < 1) {
|
| NSAffineTransform* transform = [NSAffineTransform transform];
|
| @@ -233,10 +233,6 @@ void SecurityStateBubbleDecoration::DrawInFrame(NSRect frame,
|
| divider_color = [divider_color colorWithAlphaComponent:divider_alpha];
|
| [divider_color set];
|
| [line stroke];
|
| -
|
| - // Revert the transformation.
|
| - [transform invert];
|
| - [transform concat];
|
| }
|
| }
|
|
|
|
|