OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkDebuggerGUI.h" | 8 #include "SkDebuggerGUI.h" |
9 #include "PictureRenderer.h" | 9 #include "PictureRenderer.h" |
| 10 #include "SkPictureData.h" |
| 11 #include "SkPicturePlayback.h" |
| 12 #include "SkPictureRecord.h" |
10 #include <QListWidgetItem> | 13 #include <QListWidgetItem> |
11 #include <QtGui> | 14 #include <QtGui> |
12 | 15 |
13 #if defined(SK_BUILD_FOR_WIN32) | 16 #if defined(SK_BUILD_FOR_WIN32) |
14 #include "SysTimer_windows.h" | 17 #include "SysTimer_windows.h" |
15 #elif defined(SK_BUILD_FOR_MAC) | 18 #elif defined(SK_BUILD_FOR_MAC) |
16 #include "SysTimer_mach.h" | 19 #include "SysTimer_mach.h" |
17 #elif defined(SK_BUILD_FOR_UNIX) || defined(SK_BUILD_FOR_ANDROID) | 20 #elif defined(SK_BUILD_FOR_UNIX) || defined(SK_BUILD_FOR_ANDROID) |
18 #include "SysTimer_posix.h" | 21 #include "SysTimer_posix.h" |
19 #else | 22 #else |
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
849 fCanvasWidget.drawTo(fPausedRow); | 852 fCanvasWidget.drawTo(fPausedRow); |
850 } else { | 853 } else { |
851 fCanvasWidget.drawTo(fListWidget.currentRow()); | 854 fCanvasWidget.drawTo(fListWidget.currentRow()); |
852 } | 855 } |
853 } | 856 } |
854 | 857 |
855 void SkDebuggerGUI::updateHit(int newHit) { | 858 void SkDebuggerGUI::updateHit(int newHit) { |
856 fCommandHitBox.setText(QString::number(newHit)); | 859 fCommandHitBox.setText(QString::number(newHit)); |
857 } | 860 } |
858 | 861 |
OLD | NEW |