| 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..1e9990b36326c8ae0153e9c5c04f8f8ddcee644d
|
| --- /dev/null
|
| +++ b/base/trace_event/video_playback_pae.h
|
| @@ -0,0 +1,34 @@
|
| +// 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/time/time.h"
|
| +#include "base/trace_event/persistent_async_event.h"
|
| +#include "base/trace_event/trace_event.h"
|
| +
|
| +namespace base {
|
| +
|
| +namespace trace_event {
|
| +
|
| +// Class that provides a persistent async event for video playback.
|
| +
|
| +class BASE_EXPORT VideoPlaybackPersistentAsyncEvent
|
| + : 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_
|
|
|