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

Unified Diff: chromecast/common/media/shared_memory_chunk.cc

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/shared_memory_chunk.h ('k') | chromecast/media/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/common/media/shared_memory_chunk.cc
diff --git a/chromecast/common/media/shared_memory_chunk.cc b/chromecast/common/media/shared_memory_chunk.cc
deleted file mode 100644
index fd83ea927ae559e6b902c2d129a3ea1578799151..0000000000000000000000000000000000000000
--- a/chromecast/common/media/shared_memory_chunk.cc
+++ /dev/null
@@ -1,36 +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.
-
-#include "chromecast/common/media/shared_memory_chunk.h"
-
-#include <utility>
-
-#include "base/memory/shared_memory.h"
-
-namespace chromecast {
-namespace media {
-
-SharedMemoryChunk::SharedMemoryChunk(
- std::unique_ptr<base::SharedMemory> shared_mem,
- size_t size)
- : shared_mem_(std::move(shared_mem)), size_(size) {}
-
-SharedMemoryChunk::~SharedMemoryChunk() {
-}
-
-void* SharedMemoryChunk::data() const {
- return shared_mem_->memory();
-}
-
-size_t SharedMemoryChunk::size() const {
- return size_;
-}
-
-bool SharedMemoryChunk::valid() const {
- return true;
-}
-
-} // namespace media
-} // namespace chromecast
-
« no previous file with comments | « chromecast/common/media/shared_memory_chunk.h ('k') | chromecast/media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698