Chromium Code Reviews| Index: content/renderer/p2p/p2p_transport_impl.h |
| =================================================================== |
| --- content/renderer/p2p/p2p_transport_impl.h (revision 88941) |
| +++ content/renderer/p2p/p2p_transport_impl.h (working copy) |
| @@ -5,8 +5,11 @@ |
| #ifndef CONTENT_RENDERER_P2P_P2P_TRANSPORT_IMPL_H_ |
| #define CONTENT_RENDERER_P2P_P2P_TRANSPORT_IMPL_H_ |
| +#include <string> |
| +#include <vector> |
|
levin
2011/06/14 07:35:05
I don't see any uses of vector in this header.
Lei Zhang
2011/06/14 18:57:35
Removed.
|
| + |
| #include "base/basictypes.h" |
| -#include "base/scoped_ptr.h" |
| +#include "base/memory/scoped_ptr.h" |
| #include "net/base/completion_callback.h" |
| #include "third_party/libjingle/source/talk/base/sigslot.h" |
| #include "webkit/glue/p2p_transport.h" |
| @@ -43,7 +46,7 @@ |
| // Creates P2PTransportImpl using specified |
| // P2PSocketDispatcher. This constructor creates IpcNetworkManager |
| // and IpcPacketSocketFactory, and keeps ownership of these objects. |
| - P2PTransportImpl(P2PSocketDispatcher* socket_dispatcher); |
| + explicit P2PTransportImpl(P2PSocketDispatcher* socket_dispatcher); |
| virtual ~P2PTransportImpl(); |