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

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

Issue 754813002: Expose setting API to set ImageAnimationPolicy(Allowed, Once, None) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Support three options for animations Created 6 years 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 | Source/core/fetch/ImageResource.cpp » ('j') | Source/core/frame/Settings.h » ('J')
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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 // For compatibility, images keep loading even if there are HTTP errors. 98 // For compatibility, images keep loading even if there are HTTP errors.
99 virtual bool shouldIgnoreHTTPStatusCodeErrors() const override { return true ; } 99 virtual bool shouldIgnoreHTTPStatusCodeErrors() const override { return true ; }
100 100
101 virtual bool isImage() const override { return true; } 101 virtual bool isImage() const override { return true; }
102 virtual bool stillNeedsLoad() const override { return !errorOccurred() && st atus() == Unknown && !isLoading(); } 102 virtual bool stillNeedsLoad() const override { return !errorOccurred() && st atus() == Unknown && !isLoading(); }
103 103
104 // ImageObserver 104 // ImageObserver
105 virtual void decodedSizeChanged(const blink::Image*, int delta) override; 105 virtual void decodedSizeChanged(const blink::Image*, int delta) override;
106 virtual void didDraw(const blink::Image*) override; 106 virtual void didDraw(const blink::Image*) override;
107 107
108 virtual bool shouldPauseAnimation(const blink::Image*) override; 108 virtual bool shouldPauseAnimation(const blink::Image*, bool repeated = false ) override;
109 virtual void animationAdvanced(const blink::Image*) override; 109 virtual void animationAdvanced(const blink::Image*) override;
110 virtual void changedInRect(const blink::Image*, const IntRect&) override; 110 virtual void changedInRect(const blink::Image*, const IntRect&) override;
111 111
112 protected: 112 protected:
113 virtual bool isSafeToUnlock() const override; 113 virtual bool isSafeToUnlock() const override;
114 virtual void destroyDecodedDataIfPossible() override; 114 virtual void destroyDecodedDataIfPossible() override;
115 115
116 private: 116 private:
117 void clear(); 117 void clear();
118 118
(...skipping 15 matching lines...) Expand all
134 OwnPtr<SVGImageCache> m_svgImageCache; 134 OwnPtr<SVGImageCache> m_svgImageCache;
135 bool m_loadingMultipartContent; 135 bool m_loadingMultipartContent;
136 bool m_hasDevicePixelRatioHeaderValue; 136 bool m_hasDevicePixelRatioHeaderValue;
137 }; 137 };
138 138
139 DEFINE_RESOURCE_TYPE_CASTS(Image); 139 DEFINE_RESOURCE_TYPE_CASTS(Image);
140 140
141 } 141 }
142 142
143 #endif 143 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/fetch/ImageResource.cpp » ('j') | Source/core/frame/Settings.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698