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

Unified Diff: third_party/WebKit/Source/platform/image-decoders/ImageFrame.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
diff --git a/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h b/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
index 734ad77d32e17e107d0c4e307321efadbc3af4ba..045fcc7b654d36e8737c9a81de65c2b6c917fdb0 100644
--- a/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
+++ b/third_party/WebKit/Source/platform/image-decoders/ImageFrame.h
@@ -142,7 +142,8 @@ class PLATFORM_EXPORT ImageFrame final {
// SkImage to avoid copying bitmap in SkImage::MakeFromBitmap(m_bitmap).
sk_sp<SkImage> finalizePixelsAndGetImage();
- // Returns true if the pixels changed, but the bitmap has not yet been notified.
+ // Returns true if the pixels changed, but the bitmap has not yet been
+ // notified.
bool pixelsChanged() const { return m_pixelsChanged; }
size_t requiredPreviousFrameIndex() const {
return m_requiredPreviousFrameIndex;
@@ -163,8 +164,9 @@ class PLATFORM_EXPORT ImageFrame final {
void setMemoryAllocator(SkBitmap::Allocator* allocator) {
m_allocator = allocator;
}
- // The pixelsChanged flag needs to be set when the raw pixel data was directly modified
- // (e.g. through a pointer or setRGBA). The flag is usually set after a batch of changes was made.
+ // The pixelsChanged flag needs to be set when the raw pixel data was directly
+ // modified (e.g. through a pointer or setRGBA). The flag is usually set after
+ // a batch of changes was made.
void setPixelsChanged(bool pixelsChanged) { m_pixelsChanged = pixelsChanged; }
void setRequiredPreviousFrameIndex(size_t previousFrameIndex) {
m_requiredPreviousFrameIndex = previousFrameIndex;

Powered by Google App Engine
This is Rietveld 408576698