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

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

Issue 1457753002: Clean up dead code: PictureRenderer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase? Created 5 years, 1 month 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 | gyp/tools.gyp » ('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 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef SKDEBUGGERUI_H 9 #ifndef SKDEBUGGERUI_H
10 #define SKDEBUGGERUI_H 10 #define SKDEBUGGERUI_H
(...skipping 20 matching lines...) Expand all
31 #include <QtGui/QMainWindow> 31 #include <QtGui/QMainWindow>
32 #include <QtGui/QSplitter> 32 #include <QtGui/QSplitter>
33 #include <QtGui/QStatusBar> 33 #include <QtGui/QStatusBar>
34 #include <QtGui/QToolBar> 34 #include <QtGui/QToolBar>
35 #include <QtGui/QVBoxLayout> 35 #include <QtGui/QVBoxLayout>
36 #include <QtGui/QWidget> 36 #include <QtGui/QWidget>
37 #include <QtGui/QMenu> 37 #include <QtGui/QMenu>
38 #include <QtGui/QMenuBar> 38 #include <QtGui/QMenuBar>
39 #include <vector> 39 #include <vector>
40 40
41 class SkTimedPicture;
42 namespace sk_tools {
43 class PictureRenderer;
44 }
45
46 /** \class SkDebuggerGUI 41 /** \class SkDebuggerGUI
47 42
48 Container for the UI and it's functions. 43 Container for the UI and it's functions.
49 */ 44 */
50 class SkDebuggerGUI : public QMainWindow { 45 class SkDebuggerGUI : public QMainWindow {
51 Q_OBJECT 46 Q_OBJECT
52 47
53 public: 48 public:
54 /** 49 /**
55 Constructs the view of the application. 50 Constructs the view of the application.
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 Fills in the overview pane with text 322 Fills in the overview pane with text
328 */ 323 */
329 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i nt numRuns); 324 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i nt numRuns);
330 325
331 bool isPaused() const { 326 bool isPaused() const {
332 return fActionPause.isChecked(); 327 return fActionPause.isChecked();
333 } 328 }
334 }; 329 };
335 330
336 #endif // SKDEBUGGERUI_H 331 #endif // SKDEBUGGERUI_H
OLDNEW
« no previous file with comments | « no previous file | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698