Index: debugger/QT/SkDrawCommandGeometryWidget.h |
diff --git a/debugger/QT/SkDrawCommandGeometryWidget.h b/debugger/QT/SkDrawCommandGeometryWidget.h |
index aa5d10a01a94c3d1701eeedaa3c1688cbea0603b..0bdddd03194ca4dae3de4cef157f05acff4ed59a 100644 |
--- a/debugger/QT/SkDrawCommandGeometryWidget.h |
+++ b/debugger/QT/SkDrawCommandGeometryWidget.h |
@@ -19,17 +19,18 @@ class SkDrawCommandGeometryWidget : public QFrame { |
public: |
SkDrawCommandGeometryWidget(SkDebugger* debugger); |
- |
-public slots: |
- void updateImage(); |
+ void setDrawCommandIndex(int index); |
protected: |
void paintEvent(QPaintEvent* event); |
void resizeEvent(QResizeEvent* event); |
private: |
+ void updateImage(); |
+ |
SkDebugger* fDebugger; |
- SkAutoTUnref<SkSurface> fSurface; |
+ SkAutoTUnref<SkSurface> fSurface; |
+ int fCommandIndex; |
}; |
#endif /* SKDRAWCOMMANDGEOMETRYWIDGET_H_ */ |