| Index: tools/debugger/SkDrawCommand.h | 
| diff --git a/tools/debugger/SkDrawCommand.h b/tools/debugger/SkDrawCommand.h | 
| index d3f2908ee61b748bdb8757f19fccfd80591ad569..2e5f9c659aa3a69b20202e9231f6496cf7fe56a8 100644 | 
| --- a/tools/debugger/SkDrawCommand.h | 
| +++ b/tools/debugger/SkDrawCommand.h | 
| @@ -480,7 +480,8 @@ class SkBeginDrawShadowedPictureCommand : public SkDrawCommand { | 
| public: | 
| SkBeginDrawShadowedPictureCommand(const SkPicture* picture, | 
| const SkMatrix* matrix, | 
| -                                      const SkPaint* paint); | 
| +                                      const SkPaint* paint, | 
| +                                      const SkShadowParams& params); | 
|  | 
| void execute(SkCanvas* canvas) const override; | 
| bool render(SkCanvas* canvas) const override; | 
| @@ -489,6 +490,9 @@ private: | 
| SkAutoTUnref<const SkPicture> fPicture; | 
| SkTLazy<SkMatrix>             fMatrix; | 
| SkTLazy<SkPaint>              fPaint; | 
| +#ifdef SK_EXPERIMENTAL_SHADOWING | 
| +    SkShadowParams                fShadowParams; | 
| +#endif | 
|  | 
| typedef SkDrawCommand INHERITED; | 
| }; | 
| @@ -796,3 +800,4 @@ private: | 
| typedef SkDrawCommand INHERITED; | 
| }; | 
| #endif | 
| + | 
|  |