OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "net/websockets/websocket_stream.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 namespace net { |
| 10 |
| 11 WebSocketStream::WebSocketStream() |
| 12 : WebSocketStreamBase() {} |
| 13 WebSocketStream::~WebSocketStream() {} |
| 14 |
| 15 // Placeholder until the real implementation is ready. |
| 16 void WebSocketStream::CreateAndConnectStream( |
| 17 const GURL& socket_url, |
| 18 const std::vector<std::string>& requested_protocols, |
| 19 const GURL& origin, |
| 20 URLRequestContext* url_request_context, |
| 21 const SuccessCallback& on_success, |
| 22 const FailureCallback& on_failure) { |
| 23 NOTIMPLEMENTED(); |
| 24 } |
| 25 |
| 26 } // namespace net |
OLD | NEW |