| Index: src/utils/debugger/SkDrawCommand.h
|
| diff --git a/src/utils/debugger/SkDrawCommand.h b/src/utils/debugger/SkDrawCommand.h
|
| index 746bf5979c842a84820690ee4c49aea5d17778d1..ab72a88d718630210c654dd1dc7a0b540d593aa6 100644
|
| --- a/src/utils/debugger/SkDrawCommand.h
|
| +++ b/src/utils/debugger/SkDrawCommand.h
|
| @@ -15,6 +15,22 @@
|
|
|
| class SK_API SkDrawCommand {
|
| public:
|
| + // Staging for Chromium
|
| + typedef DrawType OpType;
|
| +
|
| + static const int kOpTypeCount = LAST_DRAWTYPE_ENUM+1;
|
| +
|
| + static const char* kDrawRectString;
|
| + static const char* kClipRectString;
|
| +
|
| + static const OpType kSave_OpType;
|
| + static const OpType kClipRect_OpType;
|
| + static const OpType kDrawRect_OpType;
|
| + static const OpType kRestore_OpType;
|
| + static const OpType kSetMatrix_OpType;
|
| + // End Staging
|
| +
|
| +
|
| SkDrawCommand(DrawType drawType);
|
|
|
| virtual ~SkDrawCommand();
|
|
|