Index: tools/flags/SkCommonFlagsConfig.h |
diff --git a/tools/flags/SkCommonFlagsConfig.h b/tools/flags/SkCommonFlagsConfig.h |
index dc38977cb886129227d6b26bcdcba38e82f6a3e1..5d95ef186ad912e8f591d3ac160f5a01b6d739fd 100644 |
--- a/tools/flags/SkCommonFlagsConfig.h |
+++ b/tools/flags/SkCommonFlagsConfig.h |
@@ -53,14 +53,14 @@ |
typedef sk_gpu_test::GrContextFactory::ContextType ContextType; |
SkCommandLineConfigGpu(const SkString& tag, const SkTArray<SkString>& viaParts, |
ContextType contextType, bool useNVPR, bool useDIText, int samples, |
- SkColorType colorType, sk_sp<SkColorSpace> colorSpace); |
+ SkColorType colorType, SkColorProfileType profileType); |
const SkCommandLineConfigGpu* asConfigGpu() const override { return this; } |
ContextType getContextType() const { return fContextType; } |
bool getUseNVPR() const { return fUseNVPR; } |
bool getUseDIText() const { return fUseDIText; } |
int getSamples() const { return fSamples; } |
SkColorType getColorType() const { return fColorType; } |
- SkColorSpace* getColorSpace() const { return fColorSpace.get(); } |
+ SkColorProfileType getProfileType() const { return fProfileType; } |
private: |
ContextType fContextType; |
@@ -68,7 +68,7 @@ |
bool fUseDIText; |
int fSamples; |
SkColorType fColorType; |
- sk_sp<SkColorSpace> fColorSpace; |
+ SkColorProfileType fProfileType; |
}; |
#endif |