| Index: src/utils/debugger/SkDebugCanvas.h
|
| diff --git a/src/utils/debugger/SkDebugCanvas.h b/src/utils/debugger/SkDebugCanvas.h
|
| index 2e9a032e4ea16ae6d9e97bed3e5ca5f149cecc89..4bb33b747546828904a26ad4a5395d9b5a2627b2 100644
|
| --- a/src/utils/debugger/SkDebugCanvas.h
|
| +++ b/src/utils/debugger/SkDebugCanvas.h
|
| @@ -210,8 +210,8 @@ public:
|
| virtual bool getClipBounds(SkRect* bounds) const SK_OVERRIDE {
|
| if (NULL != bounds) {
|
| bounds->setXYWH(0, 0,
|
| - SkIntToScalar(this->imageInfo().fWidth),
|
| - SkIntToScalar(this->imageInfo().fHeight));
|
| + SkIntToScalar(this->imageInfo().width()),
|
| + SkIntToScalar(this->imageInfo().height()));
|
| }
|
| return true;
|
| }
|
|
|