diff options
author | fmalita <fmalita@chromium.org> | 2014-11-07 12:26:46 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-07 12:26:46 -0800 |
commit | 9063ddd511f8e0d8c7454950cbc56e273678bf60 (patch) | |
tree | ff1dabfa99425f9e9ea7a81cb04afeeeff31e8f9 /debugger/QT | |
parent | 1931ec5b5dac68f1e452af0c65161bdce35b2dec (diff) |
Revert of SkDrawCommand scrubbing (patchset #2 id:20001 of https://codereview.chromium.org/706363002/)
Reason for revert:
Canary borkage.
Original issue's description:
> SkDrawCommand scrubbing
>
> Remove unused ctor, constify, etc.
>
> R=robertphillips@google.com
>
> Committed: https://skia.googlesource.com/skia/+/1931ec5b5dac68f1e452af0c65161bdce35b2dec
TBR=robertphillips@google.com
NOTREECHECKS=true
NOTRY=true
Review URL: https://codereview.chromium.org/712683002
Diffstat (limited to 'debugger/QT')
-rw-r--r-- | debugger/QT/SkDebuggerGUI.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debugger/QT/SkDebuggerGUI.cpp b/debugger/QT/SkDebuggerGUI.cpp index 4901d62389..59bfcca5fe 100644 --- a/debugger/QT/SkDebuggerGUI.cpp +++ b/debugger/QT/SkDebuggerGUI.cpp @@ -689,7 +689,8 @@ void SkDebuggerGUI::registerListClick(QListWidgetItem *item) { fCanvasWidget.drawTo(currentRow); fImageWidget.draw(); } - const SkTDArray<SkString*> *currInfo = fDebugger.getCommandInfo(currentRow); + SkTDArray<SkString*> *currInfo = fDebugger.getCommandInfo( + currentRow); /* TODO(chudy): Add command type before parameters. Rename v * to something more informative. */ |