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

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

Issue 1753813002: Unbust the old debugger (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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 | « debugger/QT/SkCanvasWidget.cpp ('k') | debugger/QT/SkDebuggerGUI.cpp » ('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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 Updates the directory widget with the latest directory path stored in 57 Updates the directory widget with the latest directory path stored in
58 the global class variable fPath. 58 the global class variable fPath.
59 */ 59 */
60 void setupDirectoryWidget(const QString& path); 60 void setupDirectoryWidget(const QString& path);
61 61
62 /** 62 /**
63 Loads the specified file. 63 Loads the specified file.
64 */ 64 */
65 void openFile(const QString& filename); 65 void openFile(const QString& filename);
66 66
67 signals: 67 Q_SIGNALS:
68 void commandChanged(int command); 68 void commandChanged(int command);
69 69
70 private slots: 70 private Q_SLOTS:
71 /** 71 /**
72 Toggles breakpoint view in the list widget. 72 Toggles breakpoint view in the list widget.
73 */ 73 */
74 void actionBreakpoints(); 74 void actionBreakpoints();
75 75
76 /** 76 /**
77 Cancels the command filter in the list widget. 77 Cancels the command filter in the list widget.
78 */ 78 */
79 void actionCancel(); 79 void actionCancel();
80 80
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 Fills in the overview pane with text 330 Fills in the overview pane with text
331 */ 331 */
332 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i nt numRuns); 332 void setupOverviewText(const SkTDArray<double>* typeTimes, double totTime, i nt numRuns);
333 333
334 bool isPaused() const { 334 bool isPaused() const {
335 return fActionPause.isChecked(); 335 return fActionPause.isChecked();
336 } 336 }
337 }; 337 };
338 338
339 #endif // SKDEBUGGERUI_H 339 #endif // SKDEBUGGERUI_H
OLDNEW
« no previous file with comments | « debugger/QT/SkCanvasWidget.cpp ('k') | debugger/QT/SkDebuggerGUI.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698