Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Unified Diff: chromecast/common/media/cma_param_traits_macros.h

Issue 2300993003: CmaRenderer is dead. Long live MojoRenderer. (Closed)
Patch Set: update OWNERS file Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/common/media/cma_param_traits.cc ('k') | chromecast/common/media/shared_memory_chunk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/common/media/cma_param_traits_macros.h
diff --git a/chromecast/common/media/cma_param_traits_macros.h b/chromecast/common/media/cma_param_traits_macros.h
deleted file mode 100644
index 2aae996937448408d521e29ec8a9e10dd3f81cc6..0000000000000000000000000000000000000000
--- a/chromecast/common/media/cma_param_traits_macros.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2014 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.
-
-// Singly or Multiply-included shared traits file depending on circumstances.
-// This allows the use of IPC serialization macros in more than one IPC message
-// file.
-#ifndef CHROMECAST_COMMON_MEDIA_CMA_PARAM_TRAITS_MACROS_H_
-#define CHROMECAST_COMMON_MEDIA_CMA_PARAM_TRAITS_MACROS_H_
-
-#include "chromecast/common/media/cma_ipc_common.h"
-#include "chromecast/media/cma/pipeline/load_type.h"
-#include "ipc/ipc_message_macros.h"
-#include "ipc/param_traits_macros.h"
-#include "media/base/audio_decoder_config.h"
-#include "media/base/buffering_state.h"
-#include "media/base/channel_layout.h"
-#include "media/base/pipeline_status.h"
-#include "media/base/sample_format.h"
-#include "media/base/video_decoder_config.h"
-#include "media/base/video_frame.h"
-
-IPC_ENUM_TRAITS_MIN_MAX_VALUE(chromecast::media::LoadType,
- chromecast::media::kLoadTypeURL,
- chromecast::media::kLoadTypeMediaStream)
-
-IPC_ENUM_TRAITS_MIN_MAX_VALUE(chromecast::media::TrackId,
- chromecast::media::kNoTrackId,
- chromecast::media::kVideoTrackId)
-
-IPC_ENUM_TRAITS_MIN_MAX_VALUE(media::AudioCodec,
- media::AudioCodec::kUnknownAudioCodec,
- media::AudioCodec::kAudioCodecMax)
-IPC_ENUM_TRAITS_MIN_MAX_VALUE(media::BufferingState,
- media::BUFFERING_HAVE_NOTHING,
- media::BUFFERING_HAVE_ENOUGH)
-IPC_ENUM_TRAITS_MIN_MAX_VALUE(media::SampleFormat,
- media::SampleFormat::kUnknownSampleFormat,
- media::SampleFormat::kSampleFormatMax)
-IPC_ENUM_TRAITS_MIN_MAX_VALUE(media::PipelineStatus,
- media::PIPELINE_OK,
- media::PIPELINE_STATUS_MAX)
-IPC_ENUM_TRAITS_MIN_MAX_VALUE(media::VideoCodec,
- media::VideoCodec::kUnknownVideoCodec,
- media::VideoCodec::kVideoCodecMax)
-IPC_ENUM_TRAITS_MAX_VALUE(media::ColorSpace, media::COLOR_SPACE_MAX)
-IPC_ENUM_TRAITS_MAX_VALUE(media::EncryptionScheme::CipherMode,
- media::EncryptionScheme::CIPHER_MODE_MAX);
-
-IPC_STRUCT_TRAITS_BEGIN(media::PipelineStatistics)
- IPC_STRUCT_TRAITS_MEMBER(audio_bytes_decoded)
- IPC_STRUCT_TRAITS_MEMBER(video_bytes_decoded)
- IPC_STRUCT_TRAITS_MEMBER(video_frames_decoded)
- IPC_STRUCT_TRAITS_MEMBER(video_frames_dropped)
-IPC_STRUCT_TRAITS_END()
-
-#endif // CHROMECAST_COMMON_MEDIA_CMA_PARAM_TRAITS_MACROS_H_
« no previous file with comments | « chromecast/common/media/cma_param_traits.cc ('k') | chromecast/common/media/shared_memory_chunk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698