summaryrefslogtreecommitdiff
path: root/voice_engine/channel_manager.h
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-14 08:31:39 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-05-14 08:31:39 +0000
commitca7a9a2696d2f73f543241093c4faeb4c608678c (patch)
treeb969d7ef21236b1d25347c156f96836440db7ca2 /voice_engine/channel_manager.h
parentee6f8a27fd52a1843cd0d4df570b91b8fd542b82 (diff)
downloadwebrtc-ca7a9a2696d2f73f543241093c4faeb4c608678c.tar.gz
Remove const for plain data types in voice_engine/
BUG=1644 R=henrikg@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1463004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4018 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'voice_engine/channel_manager.h')
-rw-r--r--voice_engine/channel_manager.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/voice_engine/channel_manager.h b/voice_engine/channel_manager.h
index defade1c..91247d6a 100644
--- a/voice_engine/channel_manager.h
+++ b/voice_engine/channel_manager.h
@@ -30,7 +30,7 @@ class ChannelManager: private ChannelManagerBase
public:
bool CreateChannel(int32_t& channelId);
- int32_t DestroyChannel(const int32_t channelId);
+ int32_t DestroyChannel(int32_t channelId);
int32_t MaxNumOfChannels() const;
@@ -39,7 +39,7 @@ public:
void GetChannelIds(int32_t* channelsArray,
int32_t& numOfChannels) const;
- ChannelManager(const uint32_t instanceId);
+ ChannelManager(uint32_t instanceId);
~ChannelManager();
@@ -48,7 +48,7 @@ private:
ChannelManager& operator=(const ChannelManager&);
- Channel* GetChannel(const int32_t channelId) const;
+ Channel* GetChannel(int32_t channelId) const;
void GetChannels(MapWrapper& channels) const;