Chromium Code Reviews| Index: base/trace_event/video_playback_pae.h |
| diff --git a/base/trace_event/video_playback_pae.h b/base/trace_event/video_playback_pae.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b578a0563452dfee4aaf133686ff4389716e8457 |
| --- /dev/null |
| +++ b/base/trace_event/video_playback_pae.h |
| @@ -0,0 +1,32 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef BASE_TRACE_EVENT_VIDEO_PERSISTENT_ASYNC_H_ |
| +#define BASE_TRACE_EVENT_VIDEO_PERSISTENT_ASYNC_H_ |
| + |
| +#include "base/macros.h" |
| +#include "base/trace_event/persistent_async_event.h" |
| + |
| +namespace base { |
| + |
| +namespace trace_event { |
| + |
| +// Class that provides a persistent async event for video playback. |
|
charliea (OOO until 10-5)
2016/08/31 17:30:38
I think "Class that..." class headers are generall
alexandermont
2016/08/31 18:31:59
Done
|
| + |
| +class BASE_EXPORT VideoPlaybackPersistentAsyncEvent |
|
charliea (OOO until 10-5)
2016/08/31 17:30:38
+oysteine@chromium.org, fmeawad@chromium.org
What
alexandermont
2016/08/31 18:31:59
I think that could be a good idea. Let's wait for
charliea (OOO until 10-5)
2016/09/02 19:24:42
(Pinged them directly about this)
oystein (OOO til 10th of July)
2016/09/02 19:55:00
Hrm, I don't think base/trace_event should referen
benjhayden
2016/09/02 20:47:30
The base PersistentAsyncEvent is the generalizatio
|
| + : public PersistentAsyncEvent { |
| + public: |
| + VideoPlaybackPersistentAsyncEvent(); |
| + ~VideoPlaybackPersistentAsyncEvent() override; |
| + |
| + protected: |
| + void RecordStartEvent() override; |
| + void RecordStartEventWithTimestamp(int64_t timestamp) override; |
| + void RecordStopEvent() override; |
| +}; |
| + |
| +} // namespace trace_event |
| +} // namespace base |
| + |
| +#endif // BASE_TRACE_EVENT_VIDEO_PERSISTENT_ASYNC_H_ |