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

Unified Diff: remoting/protocol/fake_authenticator.h

Issue 205583011: [Draft] Fix canceling pin prompt causes host overload (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Last round of feedbacks Created 6 years, 8 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 | « remoting/protocol/connection_to_host.cc ('k') | remoting/protocol/fake_authenticator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/fake_authenticator.h
diff --git a/remoting/protocol/fake_authenticator.h b/remoting/protocol/fake_authenticator.h
index a5a2de833441e87897c44a1de06fc7c510d74635..b74654d0426c63aedc718b4803e065a093282244 100644
--- a/remoting/protocol/fake_authenticator.h
+++ b/remoting/protocol/fake_authenticator.h
@@ -59,10 +59,16 @@ class FakeAuthenticator : public Authenticator {
};
FakeAuthenticator(Type type, int round_trips, Action action, bool async);
+
virtual ~FakeAuthenticator();
+ // Set the number of messages that the authenticator needs to process before
+ // started() returns true. Default to 0.
+ void set_messages_till_started(int messages);
+
// Authenticator interface.
virtual State state() const OVERRIDE;
+ virtual bool started() const OVERRIDE;
virtual RejectionReason rejection_reason() const OVERRIDE;
virtual void ProcessMessage(const buzz::XmlElement* message,
const base::Closure& resume_callback) OVERRIDE;
@@ -78,6 +84,9 @@ class FakeAuthenticator : public Authenticator {
// Total number of messages that have been processed.
int messages_;
+ // Number of messages that the authenticator needs to process before started()
+ // returns true. Default to 0.
+ int messages_till_started_;
DISALLOW_COPY_AND_ASSIGN(FakeAuthenticator);
};
@@ -85,7 +94,8 @@ class FakeAuthenticator : public Authenticator {
class FakeHostAuthenticatorFactory : public AuthenticatorFactory {
public:
FakeHostAuthenticatorFactory(
- int round_trips, FakeAuthenticator::Action action, bool async);
+ int round_trips, int messages_till_start,
+ FakeAuthenticator::Action action, bool async);
virtual ~FakeHostAuthenticatorFactory();
// AuthenticatorFactory interface.
@@ -96,6 +106,7 @@ class FakeHostAuthenticatorFactory : public AuthenticatorFactory {
private:
int round_trips_;
+ int messages_till_started_;
FakeAuthenticator::Action action_;
bool async_;
« no previous file with comments | « remoting/protocol/connection_to_host.cc ('k') | remoting/protocol/fake_authenticator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698