Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: debugger/QT/SkDebuggerGUI.cpp

Issue 916963002: Revert of Fix Chromium build (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/utils/debugger/SkDrawCommand.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | src/utils/debugger/SkDrawCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698