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

Unified Diff: Source/platform/graphics/GraphicsContext.cpp

Issue 326953002: Remove use of kUsePathBoundsForClip_RecordingFlag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/GraphicsContext.cpp
diff --git a/Source/platform/graphics/GraphicsContext.cpp b/Source/platform/graphics/GraphicsContext.cpp
index b1e34caf093615323edccf25486fdb917ac6c834..e3a836a66b37aff7fa53ba7123aba175be06984c 100644
--- a/Source/platform/graphics/GraphicsContext.cpp
+++ b/Source/platform/graphics/GraphicsContext.cpp
@@ -489,8 +489,7 @@ void GraphicsContext::beginRecording(const FloatRect& bounds)
if (!contextDisabled()) {
IntRect recordingRect = enclosingIntRect(bounds);
- m_canvas = displayList->beginRecording(recordingRect.size(),
- SkPicture::kUsePathBoundsForClip_RecordingFlag);
+ m_canvas = displayList->beginRecording(recordingRect.size());
// We want the bounds offset mapped to (0, 0), such that the display list content
// is fully contained within the SkPictureRecord's bounds.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698