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

Side by Side Diff: third_party/WebKit/Source/core/style/StyleImage.cpp

Issue 2345223002: Slim includes in CSSValue.h (Closed)
Patch Set: Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleImage.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/style/StyleImage.h" 5 #include "core/style/StyleImage.h"
6 6
7 #include "core/svg/graphics/SVGImage.h" 7 #include "core/svg/graphics/SVGImage.h"
8 #include "core/svg/graphics/SVGImageForContainer.h" 8 #include "core/svg/graphics/SVGImageForContainer.h"
9 #include "platform/geometry/LayoutSize.h"
9 10
10 namespace blink { 11 namespace blink {
11 12
12 LayoutSize StyleImage::applyZoom(const LayoutSize& size, float multiplier) 13 LayoutSize StyleImage::applyZoom(const LayoutSize& size, float multiplier)
13 { 14 {
14 if (multiplier == 1.0f) 15 if (multiplier == 1.0f)
15 return size; 16 return size;
16 17
17 LayoutUnit width(size.width() * multiplier); 18 LayoutUnit width(size.width() * multiplier);
18 LayoutUnit height(size.height() * multiplier); 19 LayoutUnit height(size.height() * multiplier);
(...skipping 10 matching lines...) Expand all
29 30
30 LayoutSize StyleImage::imageSizeForSVGImage(SVGImage* svgImage, float multiplier , const LayoutSize& defaultObjectSize) const 31 LayoutSize StyleImage::imageSizeForSVGImage(SVGImage* svgImage, float multiplier , const LayoutSize& defaultObjectSize) const
31 { 32 {
32 FloatSize unzoomedDefaultObjectSize(defaultObjectSize); 33 FloatSize unzoomedDefaultObjectSize(defaultObjectSize);
33 unzoomedDefaultObjectSize.scale(1 / multiplier); 34 unzoomedDefaultObjectSize.scale(1 / multiplier);
34 LayoutSize imageSize(roundedIntSize(svgImage->concreteObjectSize(unzoomedDef aultObjectSize))); 35 LayoutSize imageSize(roundedIntSize(svgImage->concreteObjectSize(unzoomedDef aultObjectSize)));
35 return applyZoom(imageSize, multiplier); 36 return applyZoom(imageSize, multiplier);
36 } 37 }
37 38
38 } // namespace blink 39 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleImage.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698