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

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

Issue 814403002: [Chromecast] Add CmaMediaRendererFactory and IPC proxy components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/common/media/cma_ipc_common.h
diff --git a/chromecast/media/cma/pipeline/media_pipeline_client.cc b/chromecast/common/media/cma_ipc_common.h
similarity index 51%
copy from chromecast/media/cma/pipeline/media_pipeline_client.cc
copy to chromecast/common/media/cma_ipc_common.h
index 8dbfc8db7242383ae733254398ec3337fa11e5e1..a3c45986ae558b6836f375eee32c25cd59a5f33e 100644
--- a/chromecast/media/cma/pipeline/media_pipeline_client.cc
+++ b/chromecast/common/media/cma_ipc_common.h
@@ -2,16 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chromecast/media/cma/pipeline/media_pipeline_client.h"
+#ifndef CHROMECAST_COMMON_MEDIA_CMA_IPC_COMMON_H_
+#define CHROMECAST_COMMON_MEDIA_CMA_IPC_COMMON_H_
namespace chromecast {
namespace media {
-MediaPipelineClient::MediaPipelineClient() {
-}
-
-MediaPipelineClient::~MediaPipelineClient() {
-}
+extern const int kNoTrackId;
gunsch 2014/12/20 22:41:33 Are these values more appropriate as an enum?
erickung1 2014/12/21 11:10:46 Done.
+extern const int kAudioTrackId;
+extern const int kVideoTrackId;
} // namespace media
} // namespace chromecast
+
+#endif // CHROMECAST_COMMON_MEDIA_CMA_IPC_COMMON_H_
+

Powered by Google App Engine
This is Rietveld 408576698