Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: content/renderer/media/media_stream_dependency_factory.h

Issue 10854131: Remove obsolete webkit_glue::P2PTransport interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_
6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ 6 #define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 #include "third_party/libjingle/source/talk/app/webrtc/peerconnectioninterface.h " 13 #include "third_party/libjingle/source/talk/app/webrtc/peerconnectioninterface.h "
14 #include "webkit/glue/p2p_transport.h"
15 14
16 namespace content { 15 namespace content {
17 class IpcNetworkManager; 16 class IpcNetworkManager;
18 class IpcPacketSocketFactory; 17 class IpcPacketSocketFactory;
19 class P2PSocketDispatcher; 18 class P2PSocketDispatcher;
20 } 19 }
21 20
22 namespace cricket { 21 namespace cricket {
23 class PortAllocator; 22 class PortAllocator;
24 } 23 }
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 const std::string& sdp); 80 const std::string& sdp);
82 81
83 private: 82 private:
84 talk_base::scoped_refptr<webrtc::PeerConnectionFactoryInterface> pc_factory_; 83 talk_base::scoped_refptr<webrtc::PeerConnectionFactoryInterface> pc_factory_;
85 scoped_refptr<VideoCaptureImplManager> vc_manager_; 84 scoped_refptr<VideoCaptureImplManager> vc_manager_;
86 85
87 DISALLOW_COPY_AND_ASSIGN(MediaStreamDependencyFactory); 86 DISALLOW_COPY_AND_ASSIGN(MediaStreamDependencyFactory);
88 }; 87 };
89 88
90 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_ 89 #endif // CONTENT_RENDERER_MEDIA_MEDIA_STREAM_DEPENDENCY_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698