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

Side by Side Diff: tools/timer/SysTimer_posix.h

Issue 346753003: Revert of Move BenchTimer to tools as Timer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 6 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/timer/SysTimer_mach.cpp ('k') | tools/timer/SysTimer_posix.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7 #ifndef SysTimer_DEFINED
8 #define SysTimer_DEFINED
9
10 #include <time.h>
11
12 class SysTimer {
13 public:
14 void startWall();
15 void startCpu();
16 double endCpu();
17 double endWall();
18 private:
19 timespec fCpu;
20 timespec fWall;
21 };
22
23 #endif
OLDNEW
« no previous file with comments | « tools/timer/SysTimer_mach.cpp ('k') | tools/timer/SysTimer_posix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698