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

Side by Side Diff: third_party/WebKit/Source/platform/image-decoders/ImageDecoder.h

Issue 2385993002: Rewrap comments to 80 columns in Source/platform/image-decoders/. (Closed)
Patch Set: Rewrite comment Created 4 years, 2 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/platform/image-decoders/ImageDecoder.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) 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
3 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. 3 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 void operator()(qcms_transform* transform) { 53 void operator()(qcms_transform* transform) {
54 if (transform) 54 if (transform)
55 qcms_transform_release(transform); 55 qcms_transform_release(transform);
56 } 56 }
57 }; 57 };
58 58
59 using QCMSTransformUniquePtr = 59 using QCMSTransformUniquePtr =
60 std::unique_ptr<qcms_transform, QCMSTransformDeleter>; 60 std::unique_ptr<qcms_transform, QCMSTransformDeleter>;
61 #endif // USE(QCMSLIB) 61 #endif // USE(QCMSLIB)
62 62
63 // ImagePlanes can be used to decode color components into provided buffers inst ead of using an ImageFrame. 63 // ImagePlanes can be used to decode color components into provided buffers
64 // instead of using an ImageFrame.
64 class PLATFORM_EXPORT ImagePlanes final { 65 class PLATFORM_EXPORT ImagePlanes final {
65 USING_FAST_MALLOC(ImagePlanes); 66 USING_FAST_MALLOC(ImagePlanes);
66 WTF_MAKE_NONCOPYABLE(ImagePlanes); 67 WTF_MAKE_NONCOPYABLE(ImagePlanes);
67 68
68 public: 69 public:
69 ImagePlanes(); 70 ImagePlanes();
70 ImagePlanes(void* planes[3], const size_t rowBytes[3]); 71 ImagePlanes(void* planes[3], const size_t rowBytes[3]);
71 72
72 void* plane(int); 73 void* plane(int);
73 size_t rowBytes(int) const; 74 size_t rowBytes(int) const;
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 ImageFrame::ICCProfile m_colorProfile; 354 ImageFrame::ICCProfile m_colorProfile;
354 355
355 #if USE(QCMSLIB) 356 #if USE(QCMSLIB)
356 QCMSTransformUniquePtr m_sourceToOutputDeviceColorTransform; 357 QCMSTransformUniquePtr m_sourceToOutputDeviceColorTransform;
357 #endif 358 #endif
358 }; 359 };
359 360
360 } // namespace blink 361 } // namespace blink
361 362
362 #endif 363 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/image-decoders/ImageDecoder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698