summaryrefslogtreecommitdiff
path: root/media/cast/cast_config.h
diff options
context:
space:
mode:
authorTorne (Richard Coles) <torne@google.com>2013-10-22 16:41:35 +0100
committerTorne (Richard Coles) <torne@google.com>2013-10-22 16:41:35 +0100
commit8bcbed890bc3ce4d7a057a8f32cab53fa534672e (patch)
tree1390b6675d21328859f01f50203d9bde09105298 /media/cast/cast_config.h
parent116fa16b45c9efe30e785b9fc32f09780ca23bec (diff)
downloadchromium_org-8bcbed890bc3ce4d7a057a8f32cab53fa534672e.tar.gz
Merge from Chromium at DEPS revision 230120
This commit was generated by merge_to_master.py. Change-Id: I54bc06b7ee8a07092e74ce3b68c6893508349042
Diffstat (limited to 'media/cast/cast_config.h')
-rw-r--r--media/cast/cast_config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/media/cast/cast_config.h b/media/cast/cast_config.h
index 199891de4b..71073f43e5 100644
--- a/media/cast/cast_config.h
+++ b/media/cast/cast_config.h
@@ -191,9 +191,11 @@ class PacketReceiver : public base::RefCountedThreadSafe<PacketReceiver> {
public:
// All packets received from the network should be delivered via this
// function.
- virtual void ReceivedPacket(const uint8* packet, int length,
+ virtual void ReceivedPacket(const uint8* packet, size_t length,
const base::Closure callback) = 0;
+ static void DeletePacket(const uint8* packet);
+
protected:
virtual ~PacketReceiver() {}