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

Unified Diff: remoting/client/chromoting_client.h

Issue 7466004: Message validation in message dispatchers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 5 months 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
« no previous file with comments | « no previous file | remoting/client/chromoting_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/chromoting_client.h
diff --git a/remoting/client/chromoting_client.h b/remoting/client/chromoting_client.h
index 94091f1be392c7b62682c6cd7a405ef4557ad3a3..1e6a83229609eb3bdd148cf512f8fe7b56307591 100644
--- a/remoting/client/chromoting_client.h
+++ b/remoting/client/chromoting_client.h
@@ -69,19 +69,18 @@ class ChromotingClient : public protocol::ConnectionToHost::HostEventCallback,
virtual void SetViewport(int x, int y, int width, int height);
// ConnectionToHost::HostEventCallback implementation.
- virtual void OnConnectionOpened(protocol::ConnectionToHost* conn);
- virtual void OnConnectionClosed(protocol::ConnectionToHost* conn);
- virtual void OnConnectionFailed(protocol::ConnectionToHost* conn);
+ virtual void OnConnectionOpened(protocol::ConnectionToHost* conn) OVERRIDE;
+ virtual void OnConnectionClosed(protocol::ConnectionToHost* conn) OVERRIDE;
+ virtual void OnConnectionFailed(protocol::ConnectionToHost* conn) OVERRIDE;
// ClientStub implementation.
- virtual void NotifyResolution(const protocol::NotifyResolutionRequest* msg,
- Task* done);
virtual void BeginSessionResponse(const protocol::LocalLoginStatus* msg,
- Task* done);
+ Task* done) OVERRIDE;
// VideoStub implementation.
- virtual void ProcessVideoPacket(const VideoPacket* packet, Task* done);
- virtual int GetPendingPackets();
+ virtual void ProcessVideoPacket(const VideoPacket* packet,
+ Task* done) OVERRIDE;
+ virtual int GetPendingPackets() OVERRIDE;
private:
struct QueuedVideoPacket {
« no previous file with comments | « no previous file | remoting/client/chromoting_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698