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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp

Issue 2575533002: SkClipOp is an enum class now (Closed)
Patch Set: Created 4 years 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/graphics/paint/ClipPathDisplayItem.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp b/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp
index d20887946de5483615305a3e75e585279dfbfa97..497855cf62b067e8d63c3c711af472c9771f4c1d 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/ClipPathDisplayItem.cpp
@@ -20,7 +20,7 @@ void BeginClipPathDisplayItem::replay(GraphicsContext& context) const {
void BeginClipPathDisplayItem::appendToWebDisplayItemList(
const IntRect& visualRect,
WebDisplayItemList* list) const {
- list->appendClipPathItem(m_clipPath, kIntersect_SkClipOp, true);
+ list->appendClipPathItem(m_clipPath, SkClipOp::kIntersect, true);
}
void BeginClipPathDisplayItem::analyzeForGpuRasterization(

Powered by Google App Engine
This is Rietveld 408576698