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

Side by Side Diff: tools/PictureResultsWriter.h

Issue 1313203003: Remove include of stdlib.h from SkTypes.h. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Clean up qsort conversion. Created 5 years, 3 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 | « tools/PictureRenderingFlags.cpp ('k') | tools/dump_record.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 * Copyright 2014 Google Inc. 2 * Copyright 2014 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 * Classes for writing out bench results in various formats. 7 * Classes for writing out bench results in various formats.
8 */ 8 */
9 9
10 #ifndef SkPictureResultsWriter_DEFINED 10 #ifndef SkPictureResultsWriter_DEFINED
11 #define SkPictureResultsWriter_DEFINED 11 #define SkPictureResultsWriter_DEFINED
12 12
13 13
14 #include "PictureRenderer.h" 14 #include "PictureRenderer.h"
15 #include "BenchLogger.h" 15 #include "BenchLogger.h"
16 #include "ResultsWriter.h" 16 #include "ResultsWriter.h"
17 #include "SkJSONCPP.h" 17 #include "SkJSONCPP.h"
18 #include "SkStream.h" 18 #include "SkStream.h"
19 #include "SkString.h" 19 #include "SkString.h"
20 #include "SkTArray.h" 20 #include "SkTArray.h"
21 #include "TimerData.h" 21 #include "TimerData.h"
22 22
23 #include <stdlib.h>
24
23 /** 25 /**
24 * Base class for writing picture bench results. 26 * Base class for writing picture bench results.
25 */ 27 */
26 class PictureResultsWriter : SkNoncopyable { 28 class PictureResultsWriter : SkNoncopyable {
27 public: 29 public:
28 enum TileFlags {kPurging, kAvg}; 30 enum TileFlags {kPurging, kAvg};
29 31
30 PictureResultsWriter() {} 32 PictureResultsWriter() {}
31 virtual ~PictureResultsWriter() {} 33 virtual ~PictureResultsWriter() {}
32 34
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 303
302 SkString fConfigString; 304 SkString fConfigString;
303 SkString fBuilderName; 305 SkString fBuilderName;
304 int fBuildNumber; 306 int fBuildNumber;
305 int fTimestamp; 307 int fTimestamp;
306 SkString fGitHash; 308 SkString fGitHash;
307 int fGitNumber; 309 int fGitNumber;
308 }; 310 };
309 311
310 #endif 312 #endif
OLDNEW
« no previous file with comments | « tools/PictureRenderingFlags.cpp ('k') | tools/dump_record.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698