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

Unified Diff: chromecast/media/cma/ipc_streamer/decoder_buffer_base_marshaller.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
Index: chromecast/media/cma/ipc_streamer/decoder_buffer_base_marshaller.h
diff --git a/chromecast/media/cma/ipc_streamer/decoder_buffer_base_marshaller.h b/chromecast/media/cma/ipc_streamer/decoder_buffer_base_marshaller.h
deleted file mode 100644
index 9abc7b63655a50bb5fb0dccea537622abbe74cc0..0000000000000000000000000000000000000000
--- a/chromecast/media/cma/ipc_streamer/decoder_buffer_base_marshaller.h
+++ /dev/null
@@ -1,31 +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.
-
-#ifndef CHROMECAST_MEDIA_CMA_IPC_STREAMER_DECODER_BUFFER_BASE_MARSHALLER_H_
-#define CHROMECAST_MEDIA_CMA_IPC_STREAMER_DECODER_BUFFER_BASE_MARSHALLER_H_
-
-#include <memory>
-
-#include "base/memory/ref_counted.h"
-
-namespace chromecast {
-namespace media {
-class DecoderBufferBase;
-class MediaMessage;
-
-class DecoderBufferBaseMarshaller {
- public:
- // Writes the serialized structure of |config| into |msg|.
- static void Write(
- const scoped_refptr<DecoderBufferBase>& buffer, MediaMessage* msg);
-
- // Returns a decoder buffer from its serialized structure.
- static scoped_refptr<DecoderBufferBase> Read(
- std::unique_ptr<MediaMessage> msg);
-};
-
-} // namespace media
-} // namespace chromecast
-
-#endif // CHROMECAST_MEDIA_CMA_IPC_STREAMER_DECODER_BUFFER_BASE_MARSHALLER_H_

Powered by Google App Engine
This is Rietveld 408576698