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

Unified Diff: third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp

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
« no previous file with comments | « third_party/WebKit/Source/modules/canvas2d/ClipList.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp
diff --git a/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp b/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp
index 5f9d90e368d46f3b737464cce53e626d7e7872c0..0ac112eac90ff9bd2e2a0d2903efb049de5ee13f 100644
--- a/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp
+++ b/third_party/WebKit/Source/modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.cpp
@@ -73,8 +73,9 @@ bool OffscreenCanvasRenderingContext2D::wouldTaintOrigin(
CanvasImageSource* source,
ExecutionContext* executionContext) {
if (executionContext->isWorkerGlobalScope()) {
- // We only support passing in ImageBitmap and OffscreenCanvases as source images
- // in drawImage() or createPattern() in a OffscreenCanvas2d in worker.
+ // We only support passing in ImageBitmap and OffscreenCanvases as source
+ // images in drawImage() or createPattern() in a OffscreenCanvas2d in
+ // worker.
DCHECK(source->isImageBitmap() || source->isOffscreenCanvas());
}
@@ -192,13 +193,15 @@ void OffscreenCanvasRenderingContext2D::didDraw(const SkIRect& dirtyRect) {}
bool OffscreenCanvasRenderingContext2D::stateHasFilter() {
// TODO: crbug.com/593838 make hasFilter accept nullptr
- // return state().hasFilter(nullptr, nullptr, IntSize(width(), height()), this);
+ // return state().hasFilter(nullptr, nullptr, IntSize(width(), height()),
+ // this);
return false;
}
SkImageFilter* OffscreenCanvasRenderingContext2D::stateGetFilter() {
// TODO: make getFilter accept nullptr
- // return state().getFilter(nullptr, nullptr, IntSize(width(), height()), this);
+ // return state().getFilter(nullptr, nullptr, IntSize(width(), height()),
+ // this);
return nullptr;
}
« no previous file with comments | « third_party/WebKit/Source/modules/canvas2d/ClipList.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698