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

Side by Side Diff: third_party/WebKit/Source/platform/image-encoders/PNGImageEncoder.h

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010, Google Inc. All rights reserved. 2 * Copyright (c) 2010, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #ifndef PNGImageEncoder_h 31 #ifndef PNGImageEncoder_h
32 #define PNGImageEncoder_h 32 #define PNGImageEncoder_h
33 33
34 #include "platform/geometry/IntSize.h" 34 #include "platform/geometry/IntSize.h"
35 extern "C" { 35 extern "C" {
36 #include "png.h" 36 #include "png.h"
37 } 37 }
38 #include "wtf/Allocator.h" 38 #include "wtf/Allocator.h"
39 #include "wtf/PassOwnPtr.h"
40 #include "wtf/Vector.h" 39 #include "wtf/Vector.h"
40 #include <memory>
41 41
42 namespace blink { 42 namespace blink {
43 43
44 struct ImageDataBuffer; 44 struct ImageDataBuffer;
45 45
46 class PLATFORM_EXPORT PNGImageEncoderState final { 46 class PLATFORM_EXPORT PNGImageEncoderState final {
47 USING_FAST_MALLOC(PNGImageEncoderState); 47 USING_FAST_MALLOC(PNGImageEncoderState);
48 WTF_MAKE_NONCOPYABLE(PNGImageEncoderState); 48 WTF_MAKE_NONCOPYABLE(PNGImageEncoderState);
49 public: 49 public:
50 static PassOwnPtr<PNGImageEncoderState> create(const IntSize& imageSize, Vec tor<unsigned char>* output); 50 static std::unique_ptr<PNGImageEncoderState> create(const IntSize& imageSize , Vector<unsigned char>* output);
51 ~PNGImageEncoderState(); 51 ~PNGImageEncoderState();
52 png_struct* png() { ASSERT(m_png); return m_png; } 52 png_struct* png() { ASSERT(m_png); return m_png; }
53 png_info* info() { ASSERT(m_info); return m_info; } 53 png_info* info() { ASSERT(m_info); return m_info; }
54 private: 54 private:
55 PNGImageEncoderState(png_struct* png, png_info* info) : m_png(png), m_info(i nfo) { } 55 PNGImageEncoderState(png_struct* png, png_info* info) : m_png(png), m_info(i nfo) { }
56 png_struct* m_png; 56 png_struct* m_png;
57 png_info* m_info; 57 png_info* m_info;
58 }; 58 };
59 59
60 class PLATFORM_EXPORT PNGImageEncoder { 60 class PLATFORM_EXPORT PNGImageEncoder {
61 STATIC_ONLY(PNGImageEncoder); 61 STATIC_ONLY(PNGImageEncoder);
62 public: 62 public:
63 // Encode the input data with default compression quality. See also https:// crbug.com/179289 63 // Encode the input data with default compression quality. See also https:// crbug.com/179289
64 static bool encode(const ImageDataBuffer&, Vector<unsigned char>* output); 64 static bool encode(const ImageDataBuffer&, Vector<unsigned char>* output);
65 65
66 // Functions for progressive image encoding 66 // Functions for progressive image encoding
67 static void writeOneRowToPng(unsigned char* pixels, PNGImageEncoderState*); 67 static void writeOneRowToPng(unsigned char* pixels, PNGImageEncoderState*);
68 static void finalizePng(PNGImageEncoderState*); 68 static void finalizePng(PNGImageEncoderState*);
69 }; 69 };
70 70
71 } // namespace blink 71 } // namespace blink
72 72
73 #endif 73 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698