| Index: tools/flags/SkCommonFlagsConfig.h | 
| diff --git a/tools/flags/SkCommonFlagsConfig.h b/tools/flags/SkCommonFlagsConfig.h | 
| index 423cf1118caf86aae781e1a7a93c575879606e4a..39f1f9788bdabd203e6b59ba3db4b1540839b50d 100644 | 
| --- a/tools/flags/SkCommonFlagsConfig.h | 
| +++ b/tools/flags/SkCommonFlagsConfig.h | 
| @@ -52,18 +52,23 @@ class SkCommandLineConfigGpu : public SkCommandLineConfig { | 
| public: | 
| typedef GrContextFactory::GLContextType ContextType; | 
| SkCommandLineConfigGpu(const SkString& tag, const SkTArray<SkString>& viaParts, | 
| -                           ContextType contextType, bool useNVPR, bool useDIText, int samples); | 
| +                           ContextType contextType, bool useNVPR, bool useDIText, int samples, | 
| +                           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; } | 
| +    SkColorProfileType getProfileType() const { return fProfileType; } | 
|  | 
| private: | 
| ContextType fContextType; | 
| bool fUseNVPR; | 
| bool fUseDIText; | 
| int fSamples; | 
| +    SkColorType fColorType; | 
| +    SkColorProfileType fProfileType; | 
| }; | 
| #endif | 
|  | 
|  |