| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_TEST_RUNNER_MOCK_WEBRTC_PEER_CONNECTION_HANDLER_H_ | 5 #ifndef CONTENT_SHELL_TEST_RUNNER_MOCK_WEBRTC_PEER_CONNECTION_HANDLER_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_MOCK_WEBRTC_PEER_CONNECTION_HANDLER_H_ | 6 #define CONTENT_SHELL_TEST_RUNNER_MOCK_WEBRTC_PEER_CONNECTION_HANDLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "third_party/WebKit/public/platform/WebRTCError.h" | 12 #include "third_party/WebKit/public/platform/WebRTCError.h" |
| 13 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" | 13 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" |
| 14 #include "third_party/WebKit/public/platform/WebRTCSessionDescription.h" | 14 #include "third_party/WebKit/public/platform/WebRTCSessionDescription.h" |
| 15 #include "third_party/WebKit/public/platform/WebRTCSessionDescriptionRequest.h" | 15 #include "third_party/WebKit/public/platform/WebRTCSessionDescriptionRequest.h" |
| 16 #include "third_party/WebKit/public/platform/WebRTCStatsRequest.h" | 16 #include "third_party/WebKit/public/platform/WebRTCStatsRequest.h" |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 StreamMap local_streams_; | 98 StreamMap local_streams_; |
| 99 StreamMap remote_streams_; | 99 StreamMap remote_streams_; |
| 100 | 100 |
| 101 base::WeakPtrFactory<MockWebRTCPeerConnectionHandler> weak_factory_; | 101 base::WeakPtrFactory<MockWebRTCPeerConnectionHandler> weak_factory_; |
| 102 | 102 |
| 103 DISALLOW_COPY_AND_ASSIGN(MockWebRTCPeerConnectionHandler); | 103 DISALLOW_COPY_AND_ASSIGN(MockWebRTCPeerConnectionHandler); |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace test_runner | 106 } // namespace test_runner |
| 107 | 107 |
| 108 #endif // COMPONENTS_TEST_RUNNER_MOCK_WEBRTC_PEER_CONNECTION_HANDLER_H_ | 108 #endif // CONTENT_SHELL_TEST_RUNNER_MOCK_WEBRTC_PEER_CONNECTION_HANDLER_H_ |
| OLD | NEW |