Index: content/renderer/media/mock_web_peer_connection_handler_client.h |
diff --git a/content/renderer/media/mock_web_peer_connection_handler_client.h b/content/renderer/media/mock_web_peer_connection_handler_client.h |
deleted file mode 100644 |
index 2eeb06dbf6d84b53f0fb099793defde15d7c746c..0000000000000000000000000000000000000000 |
--- a/content/renderer/media/mock_web_peer_connection_handler_client.h |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef CONTENT_RENDERER_MEDIA_MOCK_WEB_PEER_CONNECTION_HANDLER_CLIENT_H_ |
-#define CONTENT_RENDERER_MEDIA_MOCK_WEB_PEER_CONNECTION_HANDLER_CLIENT_H_ |
- |
-#include <string> |
- |
-#include "base/basictypes.h" |
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPeerConnectionHandlerClient.h" |
- |
-namespace WebKit { |
- |
-class MockWebPeerConnectionHandlerClient |
- : public WebPeerConnectionHandlerClient { |
- public: |
- MockWebPeerConnectionHandlerClient(); |
- virtual ~MockWebPeerConnectionHandlerClient(); |
- |
- // WebPeerConnectionHandlerClient implementation. |
- virtual void didCompleteICEProcessing(); |
- virtual void didGenerateSDP(const WebString&); |
- virtual void didReceiveDataStreamMessage(const char* data, size_t length); |
- virtual void didAddRemoteStream( |
- const WebMediaStreamDescriptor& stream_descriptor); |
- virtual void didRemoveRemoteStream( |
- const WebMediaStreamDescriptor& stream_descriptor); |
- |
- const std::string& stream_label() { return stream_label_; } |
- |
- private: |
- std::string stream_label_; |
- |
- DISALLOW_COPY_AND_ASSIGN(MockWebPeerConnectionHandlerClient); |
-}; |
- |
-} // namespace WebKit |
- |
-#endif // CONTENT_RENDERER_MEDIA_MOCK_WEB_PEER_CONNECTION_HANDLER_CLIENT_H_ |