summaryrefslogtreecommitdiff
path: root/core/fxge/skia/fx_skia_device.cpp
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-17 09:19:14 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-10-17 14:25:41 +0000
commit38ce5278ad391b66716425788b45a0bfa2331412 (patch)
tree843e1755f525d41bf0a8d6574e02e231f010f8bf /core/fxge/skia/fx_skia_device.cpp
parentf9068a5c08e55c1c16b14863abd8a089a327bc4d (diff)
downloadpdfium-38ce5278ad391b66716425788b45a0bfa2331412.tar.xz
Remove fxge/ friend classes
This CL removes friends from classes in fxge/. Change-Id: I8180004de3ebf818ed4c8d5256a01c33cd2d880e Reviewed-on: https://pdfium-review.googlesource.com/16170 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxge/skia/fx_skia_device.cpp')
-rw-r--r--core/fxge/skia/fx_skia_device.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxge/skia/fx_skia_device.cpp b/core/fxge/skia/fx_skia_device.cpp
index 8038ec5de1..6e27ea1775 100644
--- a/core/fxge/skia/fx_skia_device.cpp
+++ b/core/fxge/skia/fx_skia_device.cpp
@@ -714,7 +714,7 @@ class SkiaState {
if (Accumulator::kText == m_type || drawIndex != m_commandIndex ||
(Accumulator::kPath == m_type &&
DrawChanged(pMatrix, pDrawState, fill_color, stroke_color, fill_mode,
- blend_type, m_pDriver->m_bGroupKnockout))) {
+ blend_type, m_pDriver->GetGroupKnockout()))) {
Flush();
}
if (Accumulator::kPath != m_type) {
@@ -729,7 +729,7 @@ class SkiaState {
m_fillColor = fill_color;
m_strokeColor = stroke_color;
m_blendType = blend_type;
- m_groupKnockout = m_pDriver->m_bGroupKnockout;
+ m_groupKnockout = m_pDriver->GetGroupKnockout();
if (pMatrix)
m_drawMatrix = *pMatrix;
m_drawIndex = m_commandIndex;