diff options
Diffstat (limited to 'remoting/protocol/fake_session.cc')
-rw-r--r-- | remoting/protocol/fake_session.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/remoting/protocol/fake_session.cc b/remoting/protocol/fake_session.cc index a9279af..3499650 100644 --- a/remoting/protocol/fake_session.cc +++ b/remoting/protocol/fake_session.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -243,6 +243,10 @@ void FakeSession::SetStateChangeCallback(const StateChangeCallback& callback) { callback_ = callback; } +void FakeSession::SetRouteChangeCallback(const RouteChangeCallback& callback) { + NOTIMPLEMENTED(); +} + Session::Error FakeSession::error() { return error_; } |