Comment out unused names in src/core/SkGlyphCache.h

Android violates our encapsulation and depends on this file;
to keep their compiles clean they want us to hide the names
of unused parameters.

Follow-up to https://codereview.chromium.org/726923002/.

R=djsollen@google.com

Review URL: https://codereview.chromium.org/839583005
This commit is contained in:
tomhudson 2015-01-06 12:59:05 -08:00 committed by Commit bot
parent 7ef197255d
commit f7be779e1d

View File

@ -248,9 +248,9 @@ protected:
SkAutoGlyphCacheBase(SkTypeface* typeface, const SkDescriptor* desc) {
fCache = SkGlyphCache::DetachCache(typeface, desc);
}
SkAutoGlyphCacheBase(const SkPaint& paint,
const SkDeviceProperties* deviceProperties,
const SkMatrix* matrix) {
SkAutoGlyphCacheBase(const SkPaint& /*paint*/,
const SkDeviceProperties* /*deviceProperties*/,
const SkMatrix* /*matrix*/) {
fCache = NULL;
}
SkAutoGlyphCacheBase() {