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

Unified Diff: remoting/jingle_glue/chromium_socket_factory.cc

Issue 12207034: Linux/ChromeOS Chromium style checker cleanup, remoting/ edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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
Index: remoting/jingle_glue/chromium_socket_factory.cc
===================================================================
--- remoting/jingle_glue/chromium_socket_factory.cc (revision 180901)
+++ remoting/jingle_glue/chromium_socket_factory.cc (working copy)
@@ -43,17 +43,17 @@
int min_port, int max_port);
// talk_base::AsyncPacketSocket interface.
- virtual talk_base::SocketAddress GetLocalAddress() const;
- virtual talk_base::SocketAddress GetRemoteAddress() const;
- virtual int Send(const void* data, size_t data_size);
+ virtual talk_base::SocketAddress GetLocalAddress() const OVERRIDE;
+ virtual talk_base::SocketAddress GetRemoteAddress() const OVERRIDE;
+ virtual int Send(const void* data, size_t data_size) OVERRIDE;
virtual int SendTo(const void* data, size_t data_size,
- const talk_base::SocketAddress& address);
- virtual int Close();
- virtual State GetState() const;
- virtual int GetOption(talk_base::Socket::Option option, int* value);
- virtual int SetOption(talk_base::Socket::Option option, int value);
- virtual int GetError() const;
- virtual void SetError(int error);
+ const talk_base::SocketAddress& address) OVERRIDE;
+ virtual int Close() OVERRIDE;
+ virtual State GetState() const OVERRIDE;
+ virtual int GetOption(talk_base::Socket::Option option, int* value) OVERRIDE;
+ virtual int SetOption(talk_base::Socket::Option option, int value) OVERRIDE;
+ virtual int GetError() const OVERRIDE;
+ virtual void SetError(int error) OVERRIDE;
private:
struct PendingPacket {
« no previous file with comments | « remoting/host/policy_hack/policy_watcher_linux.cc ('k') | remoting/protocol/buffered_socket_writer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698