Index: google_apis/gcm/engine/connection_handler_impl.h |
diff --git a/google_apis/gcm/engine/connection_handler_impl.h b/google_apis/gcm/engine/connection_handler_impl.h |
index 110cdcdddda51d7e228fb30bb73fef25799dc68e..c4efe66f7d31620be609804148618de6061180f3 100644 |
--- a/google_apis/gcm/engine/connection_handler_impl.h |
+++ b/google_apis/gcm/engine/connection_handler_impl.h |
@@ -34,7 +34,7 @@ class GCM_EXPORT ConnectionHandlerImpl : public ConnectionHandler { |
// ConnectionHandler implementation. |
virtual void Init(const mcs_proto::LoginRequest& login_request, |
- scoped_ptr<net::StreamSocket> socket) OVERRIDE; |
+ net::StreamSocket* socket) OVERRIDE; |
virtual bool CanSendMessage() const OVERRIDE; |
virtual void SendMessage(const google::protobuf::MessageLite& message) |
OVERRIDE; |
@@ -96,7 +96,7 @@ class GCM_EXPORT ConnectionHandlerImpl : public ConnectionHandler { |
base::OneShotTimer<ConnectionHandlerImpl> read_timeout_timer_; |
// This connection's socket and the input/output streams attached to it. |
- scoped_ptr<net::StreamSocket> socket_; |
+ net::StreamSocket* socket_; |
scoped_ptr<SocketInputStream> input_stream_; |
scoped_ptr<SocketOutputStream> output_stream_; |