Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(796)

Unified Diff: content/browser/renderer_host/socket_stream_dispatcher_host.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « content/browser/renderer_host/resource_message_filter.h ('k') | content/browser/renderer_host/sync_resource_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698