diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-10 17:21:00 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-10 17:21:00 +0000 |
commit | c5219ddac893aafb507d759773fc9d3be7378464 (patch) | |
tree | 8daec0c05116eae3bf1b584d64ccb828b35d99df /remoting/protocol/connection_to_host.h | |
parent | 540de66ae2fdf5dcd213ed5c72b414dc7e90047a (diff) | |
download | chromium_src-c5219ddac893aafb507d759773fc9d3be7378464.zip chromium_src-c5219ddac893aafb507d759773fc9d3be7378464.tar.gz chromium_src-c5219ddac893aafb507d759773fc9d3be7378464.tar.bz2 |
Pass SessionConfig by reference instead of pointer.
BUG=88600
TEST=Unittests
Review URL: http://codereview.chromium.org/7796026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100587 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/connection_to_host.h')
-rw-r--r-- | remoting/protocol/connection_to_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/protocol/connection_to_host.h b/remoting/protocol/connection_to_host.h index ada717b..46e7595 100644 --- a/remoting/protocol/connection_to_host.h +++ b/remoting/protocol/connection_to_host.h @@ -95,7 +95,7 @@ class ConnectionToHost : public SignalStrategy::StatusObserver, virtual void Disconnect(const base::Closure& shutdown_task); - virtual const SessionConfig* config(); + virtual const SessionConfig& config(); virtual InputStub* input_stub(); |