| Index: content/browser/renderer_host/socket_stream_dispatcher_host.h
|
| diff --git a/content/browser/renderer_host/socket_stream_dispatcher_host.h b/content/browser/renderer_host/socket_stream_dispatcher_host.h
|
| index fe7e34923017465c390a6c15148a4ebc0e6bbacc..f77ff2c51349ac507f0a5f438687128e3834d506 100644
|
| --- a/content/browser/renderer_host/socket_stream_dispatcher_host.h
|
| +++ b/content/browser/renderer_host/socket_stream_dispatcher_host.h
|
| @@ -33,23 +33,24 @@ class SocketStreamDispatcherHost : public BrowserMessageFilter,
|
|
|
| // BrowserMessageFilter methods.
|
| virtual bool OnMessageReceived(const IPC::Message& message,
|
| - bool* message_was_ok);
|
| + bool* message_was_ok) OVERRIDE;
|
|
|
| // The object died, so cancel and detach all requests associated with it.
|
| void CancelRequestsForProcess(int host_id);
|
|
|
| // SocketStream::Delegate methods.
|
| virtual void OnConnected(net::SocketStream* socket,
|
| - int max_pending_send_allowed);
|
| - virtual void OnSentData(net::SocketStream* socket, int amount_sent);
|
| + int max_pending_send_allowed) OVERRIDE;
|
| + virtual void OnSentData(net::SocketStream* socket, int amount_sent) OVERRIDE;
|
| virtual void OnReceivedData(net::SocketStream* socket,
|
| - const char* data, int len);
|
| - virtual void OnClose(net::SocketStream* socket);
|
| - virtual bool CanGetCookies(net::SocketStream* socket, const GURL& url);
|
| + const char* data, int len) OVERRIDE;
|
| + virtual void OnClose(net::SocketStream* socket) OVERRIDE;
|
| + virtual bool CanGetCookies(net::SocketStream* socket,
|
| + const GURL& url) OVERRIDE;
|
| virtual bool CanSetCookie(net::SocketStream* request,
|
| const GURL& url,
|
| const std::string& cookie_line,
|
| - net::CookieOptions* options);
|
| + net::CookieOptions* options) OVERRIDE;
|
|
|
| private:
|
| // Message handlers called by OnMessageReceived.
|
|
|