summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/image-decoders/ico/ICOImageDecoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/image-decoders/ico/ICOImageDecoder.h')
-rw-r--r--WebCore/platform/image-decoders/ico/ICOImageDecoder.h25
1 files changed, 12 insertions, 13 deletions
diff --git a/WebCore/platform/image-decoders/ico/ICOImageDecoder.h b/WebCore/platform/image-decoders/ico/ICOImageDecoder.h
index a4f3dbd..56a74c3 100644
--- a/WebCore/platform/image-decoders/ico/ICOImageDecoder.h
+++ b/WebCore/platform/image-decoders/ico/ICOImageDecoder.h
@@ -23,27 +23,26 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef ICO_DECODER_H_
-#define ICO_DECODER_H_
+#ifndef ICOImageDecoder_h
+#define ICOImageDecoder_h
#include "ImageDecoder.h"
namespace WebCore {
-class ICOImageReader;
+ class ICOImageReader;
-// This class decodes the ICO and CUR image formats.
-class ICOImageDecoder : public ImageDecoder
-{
-public:
- virtual String filenameExtension() const { return "ico"; }
+ // This class decodes the ICO and CUR image formats.
+ class ICOImageDecoder : public ImageDecoder {
+ public:
+ virtual String filenameExtension() const { return "ico"; }
- // Whether or not the size information has been decoded yet.
- virtual bool isSizeAvailable() const;
+ // Whether or not the size information has been decoded yet.
+ virtual bool isSizeAvailable() const;
- virtual RGBA32Buffer* frameBufferAtIndex(size_t index);
-};
+ virtual RGBA32Buffer* frameBufferAtIndex(size_t index);
+ };
-}
+} // namespace WebCore
#endif