1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14

content / common / media / media_log_records.mojom [blame]

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module content.mojom;

import "media/mojo/mojom/media_types.mojom";

// This interface notifies the browser of an event occurring in the
// media pipeline. It sends media event logs from renderer to browser.
interface MediaInternalLogRecords {
  // Sends batched media logs to MediaInternalLogRecordsImpl::Log
  Log(array<media.mojom.MediaLogRecord> events);
};