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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h

Issue 1402963003: ** DO NO COMMIT ** for jake Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/modules/canvas2d/CanvasRenderingContext2DState.h
diff --git a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h
index 551c1d0c70676f029a148c73bcd9a1ce15586550..d3f50365b4819d94e1e683ac92b853b5e075d502 100644
--- a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h
+++ b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h
@@ -141,6 +141,12 @@ public:
void setImageSmoothingEnabled(bool);
bool imageSmoothingEnabled() const;
+ void setImageSmoothingQuality(String);
+ String imageSmoothingQuality() const;
+
+ String SkFilterQuality2imageSmoothingQuality(SkFilterQuality) const;
zino 2015/10/14 07:51:36 We don't need these methods.
+ SkFilterQuality imageSmoothingQuality2SkFilterQuality(String) const;
zino 2015/10/14 07:51:36 nit: There are unnecessary blanks at the end of th
+
void setUnparsedStrokeColor(const String& color) { m_unparsedStrokeColor = color; }
const String& unparsedStrokeColor() const { return m_unparsedStrokeColor; }

Powered by Google App Engine
This is Rietveld 408576698