summaryrefslogtreecommitdiff
path: root/www-client/chromium/files/chromium-89-uigfx-image-skia.patch
diff options
context:
space:
mode:
Diffstat (limited to 'www-client/chromium/files/chromium-89-uigfx-image-skia.patch')
-rw-r--r--www-client/chromium/files/chromium-89-uigfx-image-skia.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/www-client/chromium/files/chromium-89-uigfx-image-skia.patch b/www-client/chromium/files/chromium-89-uigfx-image-skia.patch
deleted file mode 100644
index a96dd00..0000000
--- a/www-client/chromium/files/chromium-89-uigfx-image-skia.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/ui/gfx/image/image_skia.cc b/ui/gfx/image/image_skia.cc
-index 6d2748d67..31dfdf5d2 100644
---- a/ui/gfx/image/image_skia.cc
-+++ b/ui/gfx/image/image_skia.cc
-@@ -125,7 +125,7 @@ class ImageSkiaStorage : public base::RefCountedThreadSafe<ImageSkiaStorage> {
- // one and rescale the image.
- // Right now only Windows uses 2 and other platforms use 1 by default.
- // TODO(mukai, oshima): abandon 1 code path and use 2 for every platforms.
-- std::vector<const ImageSkiaRep>::iterator FindRepresentation(
-+ std::vector<ImageSkiaRep>::const_iterator FindRepresentation(
- float scale,
- bool fetch_new_image) const;
-
-@@ -211,7 +211,7 @@ bool ImageSkiaStorage::HasRepresentationAtAllScales() const {
- return source_ && source_->HasRepresentationAtAllScales();
- }
-
--std::vector<const ImageSkiaRep>::iterator ImageSkiaStorage::FindRepresentation(
-+std::vector<ImageSkiaRep>::const_iterator ImageSkiaStorage::FindRepresentation(
- float scale,
- bool fetch_new_image) const {
- auto closest_iter = image_reps_.end();