Chromium Code Reviews| Index: content/renderer/p2p/ipc_socket_factory.cc |
| diff --git a/content/renderer/p2p/ipc_socket_factory.cc b/content/renderer/p2p/ipc_socket_factory.cc |
| index 80f26760aed71bc3ce405fd33d3b379156d3f0ba..9014003f5eb7d05482f31ee4eb1ab47fbf238021 100644 |
| --- a/content/renderer/p2p/ipc_socket_factory.cc |
| +++ b/content/renderer/p2p/ipc_socket_factory.cc |
| @@ -50,7 +50,8 @@ bool JingleSocketOptionToP2PSocketOption(talk_base::Socket::Option option, |
| case talk_base::Socket::OPT_IPV6_V6ONLY: |
| return false; // Not supported by the chrome sockets. |
| default: |
| - NOTREACHED(); |
| + // TODO(mallinath):FIXME and add back NOTREACHED(). |
| +// NOTREACHED(); |
|
Ronghua Wu (Left Chromium)
2014/02/14 16:37:00
looks like there's a new OPT_RTP_SENDTIME_EXTN_ID.
Mallinath (Gone from Chromium)
2014/02/14 17:12:24
Add OPT_RTP_SENDTIME_EXTN_ID below line 50.
On 201
|
| return false; |
| } |
| return true; |