Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(272)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: tools/timer/SysTimer_posix.h
Issue
1422513003
:
SkTime::GetNSecs() (Closed)
Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: #else std::chrono
Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
gyp/tools.gyp
include/core/SkTime.h
src/animator/SkTime.cpp
src/core/SkTime.cpp
src/ports/SkTime_Unix.cpp
src/ports/SkTime_win.cpp
tools/timer/GpuTimer.h
tools/timer/GpuTimer.cpp
tools/timer/SysTimer_mach.h
tools/timer/SysTimer_mach.cpp
tools/timer/SysTimer_posix.h
tools/timer/SysTimer_posix.cpp
tools/timer/SysTimer_windows.h
tools/timer/SysTimer_windows.cpp
tools/timer/Timer.h
tools/timer/Timer.cpp
tools/timer/TimerData.h
tools/timer/TimerData.cpp
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')
OLD
NEW
(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
OLD
NEW
« no previous file with comments
|
« tools/timer/SysTimer_mach.cpp
('k') |
tools/timer/SysTimer_posix.cpp »
('j') |
no next file with comments »
Issue 1422513003: SkTime::GetNSecs() (Closed)
Created 5 years, 2 months ago by mtklein_C
Modified 5 years, 2 months ago
Reviewers: caryclark, reed1, mtklein
Base URL: https://skia.googlesource.com/skia.git@master
Comments: 0
This is Rietveld
408576698