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

Side by Side Diff: gpu/perftests/measurements.h

Issue 1122153002: Fixit: Fork base::TimeTicks --> TimeTicks + ThreadTicks + TraceTicks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@FIXIT_timeclasses_1of2
Patch Set: REBASE after it passed CQ but did not commit to tree Created 5 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 | « content/renderer/devtools/v8_sampling_profiler.cc ('k') | gpu/perftests/measurements.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef GPU_PERFTESTS_MEASUREMENTS_H_ 5 #ifndef GPU_PERFTESTS_MEASUREMENTS_H_
6 #define GPU_PERFTESTS_MEASUREMENTS_H_ 6 #define GPU_PERFTESTS_MEASUREMENTS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 29 matching lines...) Expand all
40 // The deltas are measured from the time of the object 40 // The deltas are measured from the time of the object
41 // creation up to when Record is called. 41 // creation up to when Record is called.
42 class MeasurementTimers { 42 class MeasurementTimers {
43 public: 43 public:
44 explicit MeasurementTimers(gfx::GPUTimingClient* gpu_timing_client); 44 explicit MeasurementTimers(gfx::GPUTimingClient* gpu_timing_client);
45 void Record(); 45 void Record();
46 Measurement GetAsMeasurement(const std::string& name); 46 Measurement GetAsMeasurement(const std::string& name);
47 ~MeasurementTimers(); 47 ~MeasurementTimers();
48 48
49 private: 49 private:
50 base::TimeTicks wall_time_start_; 50 base::TraceTicks wall_time_start_;
51 base::TimeTicks cpu_time_start_; 51 base::ThreadTicks cpu_time_start_;
52 scoped_ptr<gfx::GPUTimer> gpu_timer_; 52 scoped_ptr<gfx::GPUTimer> gpu_timer_;
53 53
54 base::TimeDelta wall_time_; 54 base::TimeDelta wall_time_;
55 base::TimeDelta cpu_time_; 55 base::TimeDelta cpu_time_;
56 }; 56 };
57 57
58 } // namespace gpu 58 } // namespace gpu
59 59
60 #endif // GPU_PERFTESTS_MEASUREMENTS_H_ 60 #endif // GPU_PERFTESTS_MEASUREMENTS_H_
OLDNEW
« no previous file with comments | « content/renderer/devtools/v8_sampling_profiler.cc ('k') | gpu/perftests/measurements.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698