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

Unified Diff: chromecast/media/cma/ipc_streamer/decrypt_config_marshaller.h

Issue 1257013003: Load CMA backend from shared library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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/decrypt_config_marshaller.h
diff --git a/chromecast/media/cma/ipc_streamer/decrypt_config_marshaller.h b/chromecast/media/cma/ipc_streamer/decrypt_config_marshaller.h
index b600ba41c147e92e743f3a1c3fd25ffee7811d33..7d32d1b8bb8188625d2faff1d5b0f830d177d5b9 100644
--- a/chromecast/media/cma/ipc_streamer/decrypt_config_marshaller.h
+++ b/chromecast/media/cma/ipc_streamer/decrypt_config_marshaller.h
@@ -13,16 +13,16 @@ class DecryptConfig;
namespace chromecast {
namespace media {
+class CastDecryptConfig;
class MediaMessage;
class DecryptConfigMarshaller {
public:
// Writes the serialized structure of |config| into |msg|.
- static void Write(
- const ::media::DecryptConfig& config, MediaMessage* msg);
+ static void Write(const CastDecryptConfig& config, MediaMessage* msg);
// Returns a DecryptConfig from its serialized structure.
- static scoped_ptr< ::media::DecryptConfig> Read(MediaMessage* msg);
+ static scoped_ptr<CastDecryptConfig> Read(MediaMessage* msg);
};
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698