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

Unified Diff: remoting/protocol/host_stub.h

Issue 6711033: A new authenticated connection evicts an old one. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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/protocol/host_stub.h
diff --git a/remoting/protocol/host_stub.h b/remoting/protocol/host_stub.h
index c4e9b46e78c6091608cc91eb756278141cc22ff8..66f5ed7d44391673fb25d2be379b2065f331f3f1 100644
--- a/remoting/protocol/host_stub.h
+++ b/remoting/protocol/host_stub.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -16,8 +16,9 @@ class Task;
namespace remoting {
namespace protocol {
-class SuggestResolutionRequest;
+class ConnectionToClient;
class LocalLoginCredentials;
+class SuggestResolutionRequest;
class HostStub {
public:
@@ -27,6 +28,7 @@ class HostStub {
virtual void SuggestResolution(
const SuggestResolutionRequest* msg, Task* done) = 0;
virtual void BeginSessionRequest(
+ ConnectionToClient* connection,
Sergey Ulanov 2011/03/18 18:12:21 Can we avoid adding this parameter? HostStub is su
simonmorris 2011/03/22 13:09:10 Done.
const LocalLoginCredentials* credentials, Task* done) = 0;
// TODO(lambroslambrou): Remove OnAuthenticated() and OnClosed() when stubs

Powered by Google App Engine
This is Rietveld 408576698