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

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

Issue 1859703002: convert //gpu to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 4 years, 8 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 | « gpu/ipc/service/stream_texture_android.cc ('k') | gpu/perftests/texture_upload_perftest.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 <memory>
8 #include <string> 9 #include <string>
9 10
10 #include "base/memory/scoped_ptr.h"
11 #include "base/time/time.h" 11 #include "base/time/time.h"
12 12
13 namespace gfx { 13 namespace gfx {
14 class GPUTimingClient; 14 class GPUTimingClient;
15 class GPUTimer; 15 class GPUTimer;
16 } 16 }
17 17
18 namespace gpu { 18 namespace gpu {
19 19
20 struct Measurement { 20 struct Measurement {
(...skipping 21 matching lines...) Expand all
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::TimeTicks wall_time_start_;
51 base::ThreadTicks cpu_time_start_; 51 base::ThreadTicks cpu_time_start_;
52 scoped_ptr<gfx::GPUTimer> gpu_timer_; 52 std::unique_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 | « gpu/ipc/service/stream_texture_android.cc ('k') | gpu/perftests/texture_upload_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698