OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_MEDIA_MOCK_WEB_RTC_PEER_CONNECTION_HANDLER_CLIENT_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_MOCK_WEB_RTC_PEER_CONNECTION_HANDLER_CLIENT_H_ |
6 #define CONTENT_RENDERER_MEDIA_MOCK_WEB_RTC_PEER_CONNECTION_HANDLER_CLIENT_H_ | 6 #define CONTENT_RENDERER_MEDIA_MOCK_WEB_RTC_PEER_CONNECTION_HANDLER_CLIENT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
13 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStream.h" | 13 #include "third_party/WebKit/public/platform/WebMediaStream.h" |
14 #include "third_party/WebKit/Source/Platform/chromium/public/WebRTCICECandidate.
h" | 14 #include "third_party/WebKit/public/platform/WebRTCICECandidate.h" |
15 #include "third_party/WebKit/Source/Platform/chromium/public/WebRTCPeerConnectio
nHandlerClient.h" | 15 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandlerClient.h
" |
16 | 16 |
17 namespace content { | 17 namespace content { |
18 | 18 |
19 class MockWebRTCPeerConnectionHandlerClient | 19 class MockWebRTCPeerConnectionHandlerClient |
20 : public WebKit::WebRTCPeerConnectionHandlerClient { | 20 : public WebKit::WebRTCPeerConnectionHandlerClient { |
21 public: | 21 public: |
22 MockWebRTCPeerConnectionHandlerClient(); | 22 MockWebRTCPeerConnectionHandlerClient(); |
23 virtual ~MockWebRTCPeerConnectionHandlerClient(); | 23 virtual ~MockWebRTCPeerConnectionHandlerClient(); |
24 | 24 |
25 // WebRTCPeerConnectionHandlerClient implementation. | 25 // WebRTCPeerConnectionHandlerClient implementation. |
(...skipping 29 matching lines...) Expand all Loading... |
55 std::string candidate_sdp_; | 55 std::string candidate_sdp_; |
56 int candidate_mline_index_; | 56 int candidate_mline_index_; |
57 std::string candidate_mid_; | 57 std::string candidate_mid_; |
58 | 58 |
59 DISALLOW_COPY_AND_ASSIGN(MockWebRTCPeerConnectionHandlerClient); | 59 DISALLOW_COPY_AND_ASSIGN(MockWebRTCPeerConnectionHandlerClient); |
60 }; | 60 }; |
61 | 61 |
62 } // namespace content | 62 } // namespace content |
63 | 63 |
64 #endif // CONTENT_RENDERER_MEDIA_MOCK_WEB_RTC_PEER_CONNECTION_HANDLER_CLIENT_H_ | 64 #endif // CONTENT_RENDERER_MEDIA_MOCK_WEB_RTC_PEER_CONNECTION_HANDLER_CLIENT_H_ |
OLD | NEW |