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

Side by Side Diff: third_party/WebKit/Source/core/fetch/ImageResource.h

Issue 1685353004: Clean up Image::computeIntrinsicDimensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nits Created 4 years, 10 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 | « no previous file | third_party/WebKit/Source/core/fetch/ImageResource.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) 2 Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de)
3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org> 3 Copyright (C) 2001 Dirk Mueller <mueller@kde.org>
4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 4 Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
5 Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. 5 Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
6 6
7 This library is free software; you can redistribute it and/or 7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public 8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either 9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version. 10 version 2 of the License, or (at your option) any later version.
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // The device pixel ratio we got from the server for this image, or 1.0. 80 // The device pixel ratio we got from the server for this image, or 1.0.
81 float devicePixelRatioHeaderValue() const { return m_devicePixelRatioHeaderV alue; } 81 float devicePixelRatioHeaderValue() const { return m_devicePixelRatioHeaderV alue; }
82 bool hasDevicePixelRatioHeaderValue() const { return m_hasDevicePixelRatioHe aderValue; } 82 bool hasDevicePixelRatioHeaderValue() const { return m_hasDevicePixelRatioHe aderValue; }
83 83
84 enum SizeType { 84 enum SizeType {
85 IntrinsicSize, // Report the intrinsic size. 85 IntrinsicSize, // Report the intrinsic size.
86 IntrinsicCorrectedToDPR, // Report the intrinsic size corrected to accou nt for image density. 86 IntrinsicCorrectedToDPR, // Report the intrinsic size corrected to accou nt for image density.
87 }; 87 };
88 // This method takes a zoom multiplier that can be used to increase the natu ral size of the image by the zoom. 88 // This method takes a zoom multiplier that can be used to increase the natu ral size of the image by the zoom.
89 LayoutSize imageSize(RespectImageOrientationEnum shouldRespectImageOrientati on, float multiplier, SizeType = IntrinsicSize); 89 LayoutSize imageSize(RespectImageOrientationEnum shouldRespectImageOrientati on, float multiplier, SizeType = IntrinsicSize);
90 void computeIntrinsicDimensions(Length& intrinsicWidth, Length& intrinsicHei ght, FloatSize& intrinsicRatio); 90 void computeIntrinsicDimensions(FloatSize& intrinsicSize, FloatSize& intrins icRatio);
91 91
92 bool isAccessAllowed(SecurityOrigin*); 92 bool isAccessAllowed(SecurityOrigin*);
93 93
94 void updateImageAnimationPolicy(); 94 void updateImageAnimationPolicy();
95 95
96 // If this ImageResource has the Lo-Fi response headers, reload it with 96 // If this ImageResource has the Lo-Fi response headers, reload it with
97 // the Lo-Fi state set to off and bypassing the cache. 97 // the Lo-Fi state set to off and bypassing the cache.
98 void reloadIfLoFi(ResourceFetcher*); 98 void reloadIfLoFi(ResourceFetcher*);
99 99
100 void didAddClient(ResourceClient*) override; 100 void didAddClient(ResourceClient*) override;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 158
159 RefPtr<blink::Image> m_image; 159 RefPtr<blink::Image> m_image;
160 bool m_hasDevicePixelRatioHeaderValue; 160 bool m_hasDevicePixelRatioHeaderValue;
161 }; 161 };
162 162
163 DEFINE_RESOURCE_TYPE_CASTS(Image); 163 DEFINE_RESOURCE_TYPE_CASTS(Image);
164 164
165 } // namespace blink 165 } // namespace blink
166 166
167 #endif 167 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/fetch/ImageResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698