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

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

Issue 810033004: debugger: Remove few redundant variables (Closed) Base URL: https://skia.googlesource.com/skia.git@debugger-small-things-01-sk-graphics
Patch Set: address review comments Created 5 years, 11 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 | 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 SkTDArray<bool> fSkipCommands; // has a specific command been deleted? 297 SkTDArray<bool> fSkipCommands; // has a specific command been deleted?
298 bool fDirectoryWidgetActive; 298 bool fDirectoryWidgetActive;
299 299
300 QMenuBar fMenuBar; 300 QMenuBar fMenuBar;
301 QMenu fMenuFile; 301 QMenu fMenuFile;
302 QMenu fMenuEdit; 302 QMenu fMenuEdit;
303 QMenu fMenuNavigate; 303 QMenu fMenuNavigate;
304 QMenu fMenuView; 304 QMenu fMenuView;
305 QMenu fMenuWindows; 305 QMenu fMenuWindows;
306 306
307 bool fBreakpointsActivated;
308 bool fIndexStyleToggle;
309 bool fDeletesActivated;
310 bool fPause;
311 bool fLoading; 307 bool fLoading;
312 int fPausedRow; 308 int fPausedRow;
313 309
314 /** 310 /**
315 Creates the entire UI. 311 Creates the entire UI.
316 */ 312 */
317 void setupUi(QMainWindow *SkDebuggerGUI); 313 void setupUi(QMainWindow *SkDebuggerGUI);
318 314
319 /** 315 /**
320 Pipes a QString in with the location of the filename, proceeds to updati ng 316 Pipes a QString in with the location of the filename, proceeds to updati ng
(...skipping 26 matching lines...) Expand all
347 */ 343 */
348 void setupClipStackText(); 344 void setupClipStackText();
349 345
350 /** 346 /**
351 Render the supplied picture several times tracking the time consumed 347 Render the supplied picture several times tracking the time consumed
352 by each command. 348 by each command.
353 */ 349 */
354 void run(const SkPicture* pict, 350 void run(const SkPicture* pict,
355 sk_tools::PictureRenderer* renderer, 351 sk_tools::PictureRenderer* renderer,
356 int repeats); 352 int repeats);
353
354 bool isPaused() const {
355 return fActionPause.isChecked();
356 }
357 }; 357 };
358 358
359 #endif // SKDEBUGGERUI_H 359 #endif // SKDEBUGGERUI_H
OLDNEW
« no previous file with comments | « no previous file | debugger/QT/SkDebuggerGUI.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698