// Copyright 2012 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_LOG_RECORD_H_ #define MEDIA_BASE_MEDIA_LOG_RECORD_H_ #include <stdint.h> #include "base/time/time.h" #include "base/values.h" namespace media { // TODO(tmathmeyer) refactor this so that we aren't packing type-erased data // with different meanings into "params". struct MediaLogRecord { … }; } // namespace media #endif // MEDIA_BASE_MEDIA_LOG_RECORD_H_