// Copyright 2013 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_CAST_LOGGING_LOGGING_DEFINES_H_ #define MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_ #include <stddef.h> #include <stdint.h> #include "base/time/time.h" #include "media/cast/common/frame_id.h" #include "media/cast/common/rtp_time.h" namespace media { namespace cast { enum CastLoggingEvent { … }; enum { … }; const char* CastLoggingToString(CastLoggingEvent event); // CastLoggingEvent are classified into one of three following types. enum EventMediaType { … }; struct FrameEvent { … }; struct PacketEvent { … }; } // namespace cast } // namespace media #endif // MEDIA_CAST_LOGGING_LOGGING_DEFINES_H_