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

Unified Diff: third_party/WebKit/Source/core/html/HTMLCanvasElement.h

Issue 2384273007: reflow comments in core/html/*.{cpp,h},core/html/imports (Closed)
Patch Set: comments 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/core/html/HTMLCanvasElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLCanvasElement.h b/third_party/WebKit/Source/core/html/HTMLCanvasElement.h
index c4bc180f582ddd64eb0567b48ee1be3c70b91124..6488ffc2c4748b53d420ea742c9a2e0772ac29f6 100644
--- a/third_party/WebKit/Source/core/html/HTMLCanvasElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLCanvasElement.h
@@ -300,14 +300,15 @@ class CORE_EXPORT HTMLCanvasElement final : public HTMLElement,
bool m_originClean;
- // It prevents HTMLCanvasElement::buffer() from continuously re-attempting to allocate an imageBuffer
- // after the first attempt failed.
+ // It prevents HTMLCanvasElement::buffer() from continuously re-attempting to
+ // allocate an imageBuffer after the first attempt failed.
mutable bool m_didFailToCreateImageBuffer;
bool m_imageBufferIsClear;
std::unique_ptr<ImageBuffer> m_imageBuffer;
- mutable RefPtr<Image>
- m_copiedImage; // FIXME: This is temporary for platforms that have to copy the image buffer to render (and for CSSCanvasValue).
+ // FIXME: This is temporary for platforms that have to copy the image buffer
+ // to render (and for CSSCanvasValue).
+ mutable RefPtr<Image> m_copiedImage;
// Used for OffscreenCanvas that controls this HTML canvas element
std::unique_ptr<CanvasSurfaceLayerBridge> m_surfaceLayerBridge;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLButtonElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698