summaryrefslogtreecommitdiff
path: root/voice_engine/include/mock/mock_voe_connection_observer.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/include/mock/mock_voe_connection_observer.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/include/mock/mock_voe_connection_observer.h')
-rw-r--r--voice_engine/include/mock/mock_voe_connection_observer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/voice_engine/include/mock/mock_voe_connection_observer.h b/voice_engine/include/mock/mock_voe_connection_observer.h
index 62e572e7..12ca6395 100644
--- a/voice_engine/include/mock/mock_voe_connection_observer.h
+++ b/voice_engine/include/mock/mock_voe_connection_observer.h
@@ -17,8 +17,8 @@ namespace webrtc {
class MockVoeConnectionObserver : public VoEConnectionObserver {
public:
- MOCK_METHOD2(OnPeriodicDeadOrAlive, void(const int channel,
- const bool alive));
+ MOCK_METHOD2(OnPeriodicDeadOrAlive, void(int channel,
+ bool alive));
};
}