summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/skia/src/core/SkScalerContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/skia/src/core/SkScalerContext.h')
-rw-r--r--chromium/third_party/skia/src/core/SkScalerContext.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/third_party/skia/src/core/SkScalerContext.h b/chromium/third_party/skia/src/core/SkScalerContext.h
index 06ccce2ebb3..36fc882df70 100644
--- a/chromium/third_party/skia/src/core/SkScalerContext.h
+++ b/chromium/third_party/skia/src/core/SkScalerContext.h
@@ -96,6 +96,7 @@ public:
}
SkScalar getContrast() const {
+ sk_ignore_unused_variable(fReservedAlign);
return SkIntToScalar(fContrast) / ((1 << 8) - 1);
}
void setContrast(SkScalar c) {
@@ -206,11 +207,6 @@ public:
return static_cast<SkMask::Format>(fMaskFormat);
}
-private:
- // TODO: get rid of these bad friends.
- friend class SkScalerContext;
- friend class SkScalerContext_DW;
-
SkColor getLuminanceColor() const {
return fLumBits;
}
@@ -219,6 +215,10 @@ private:
void setLuminanceColor(SkColor c) {
fLumBits = c;
}
+
+private:
+ // TODO: remove
+ friend class SkScalerContext;
};
SK_END_REQUIRE_DENSE