summaryrefslogtreecommitdiffstats
path: root/media/cast/cast_config.h
diff options
context:
space:
mode:
authorpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-02 01:47:44 +0000
committerpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-02 01:47:44 +0000
commitb2793f770a2f387e4cf072939a4e647b7e4d3aac (patch)
tree9bd2da26829bee331c9c9b21c506f17113d5c88b /media/cast/cast_config.h
parent03b56d8840216b8e87cc76219de087c9bcb0a52e (diff)
downloadchromium_src-b2793f770a2f387e4cf072939a4e647b7e4d3aac.zip
chromium_src-b2793f770a2f387e4cf072939a4e647b7e4d3aac.tar.gz
chromium_src-b2793f770a2f387e4cf072939a4e647b7e4d3aac.tar.bz2
Revert 226305 "Fix code style and gyp files in cast to build cas..."
Seems to have broken win and mac: http://build.chromium.org/p/chromium/builders/Win/builds/17341 http://build.chromium.org/p/chromium/builders/Mac/builds/22281 > Fix code style and gyp files in cast to build cast_unittest > > *.gypi should not be used for dependency directly. Renaming those files > to *.gyp. Also style fixes to make compilers happy. > > This change is reland of r226264. > > TBR=acolwell > > Review URL: https://codereview.chromium.org/25544003 TBR=hclam@chromium.org Review URL: https://codereview.chromium.org/25662002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226381 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/cast/cast_config.h')
-rw-r--r--media/cast/cast_config.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/media/cast/cast_config.h b/media/cast/cast_config.h
index 276429a..988924a 100644
--- a/media/cast/cast_config.h
+++ b/media/cast/cast_config.h
@@ -176,7 +176,6 @@ class PacketSender {
public:
// All packets to be sent to the network will be delivered via this function.
virtual bool SendPacket(const uint8* packet, int length) = 0;
- virtual bool SendPacket(const std::vector<uint8>& packet);
virtual ~PacketSender() {}
};
@@ -188,11 +187,7 @@ class PacketReceiver : public base::RefCountedThreadSafe<PacketReceiver> {
virtual void ReceivedPacket(const uint8* packet, int length,
const base::Closure callback) = 0;
- protected:
virtual ~PacketReceiver() {}
-
- private:
- friend class base::RefCountedThreadSafe<PacketReceiver>;
};
class VideoEncoderController {