1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
media / base / media_player_logging_id.h [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_BASE_MEDIA_PLAYER_LOGGING_ID_H_
#define MEDIA_BASE_MEDIA_PLAYER_LOGGING_ID_H_
#include <stdint.h>
#include "base/atomic_sequence_num.h"
#include "media/base/media_export.h"
namespace media {
// alias the name for readability
using MediaPlayerLoggingID = int32_t;
MEDIA_EXPORT MediaPlayerLoggingID GetNextMediaPlayerLoggingID();
} // namespace media
#endif // MEDIA_BASE_MEDIA_PLAYER_LOGGING_ID_H_