Index: include/core/SkImageInfo.h |
diff --git a/include/core/SkImageInfo.h b/include/core/SkImageInfo.h |
index aa183cf314fb112d45794fa273196b7c63143eb4..459a0ee43ef0001530a0bff6f36d9b670dfbee7e 100644 |
--- a/include/core/SkImageInfo.h |
+++ b/include/core/SkImageInfo.h |
@@ -299,17 +299,13 @@ public: |
SkDEBUGCODE(void validate() const;) |
-#ifdef SK_SUPPORT_LEGACY_PUBLIC_IMAGEINFO_FIELDS |
-public: |
-#else |
private: |
-#endif |
int fWidth; |
int fHeight; |
SkColorType fColorType; |
SkAlphaType fAlphaType; |
+ SkColorProfileType fProfileType; |
-private: |
SkImageInfo(int width, int height, SkColorType ct, SkAlphaType at, SkColorProfileType pt) |
: fWidth(width) |
, fHeight(height) |
@@ -317,8 +313,6 @@ private: |
, fAlphaType(at) |
, fProfileType(pt) |
{} |
- |
- SkColorProfileType fProfileType; |
}; |
#endif |