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

Unified Diff: third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h

Issue 2387093002: Reflow comments in canvas-related folders (Closed)
Patch Set: More fix 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/offscreencanvas/OffscreenCanvas.h
diff --git a/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h b/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h
index 263100de41c9c9f5e038a9c17558c8a4f2100e3f..873a7184e2a29b2bcef6aae4a4580ded5e449c52 100644
--- a/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h
+++ b/third_party/WebKit/Source/core/offscreencanvas/OffscreenCanvas.h
@@ -98,8 +98,8 @@ class CORE_EXPORT OffscreenCanvas final
static CanvasRenderingContextFactory* getRenderingContextFactory(int);
Member<CanvasRenderingContext> m_context;
- int m_canvasId =
- -1; // DOMNodeIds starts from 0, using -1 to indicate no associated canvas element.
+ int m_canvasId = -1; // DOMNodeIds starts from 0, using -1 to indicate no
+ // associated canvas element.
IntSize m_size;
bool m_isNeutered = false;
@@ -111,7 +111,8 @@ class CORE_EXPORT OffscreenCanvas final
std::unique_ptr<OffscreenCanvasFrameDispatcher> m_frameDispatcher;
// cc::SurfaceId is broken into three integer components as this can be used
// in transfer of OffscreenCanvas across threads
- // If this object is not created via HTMLCanvasElement.transferControlToOffscreen(),
+ // If this object is not created via
+ // HTMLCanvasElement.transferControlToOffscreen(),
// then the following members would remain as initialized zero values.
uint32_t m_clientId = 0;
uint32_t m_localId = 0;

Powered by Google App Engine
This is Rietveld 408576698