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

Unified Diff: remoting/protocol/authenticator.h

Issue 205583011: [Draft] Fix canceling pin prompt causes host overload (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing .gitIngore Created 6 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/authenticator.h
diff --git a/remoting/protocol/authenticator.h b/remoting/protocol/authenticator.h
index 28288e59d448423f8ac304ee73bb17d59b956107..29c3e6c535b6db2c11d90b8abef3220fb4d68adf 100644
--- a/remoting/protocol/authenticator.h
+++ b/remoting/protocol/authenticator.h
@@ -89,6 +89,9 @@ class Authenticator {
// Returns current state of the authenticator.
virtual State state() const = 0;
+ // Whether authentication has started
Sergey Ulanov 2014/03/24 18:42:36 Please mention how this value should be used. E.g.
kelvinp 2014/03/24 23:11:39 Done.
+ virtual bool has_auth_started() const = 0;
Sergey Ulanov 2014/03/24 18:42:36 call it started()?
kelvinp 2014/03/24 23:11:39 Done.
+
// Returns rejection reason. Can be called only when in REJECTED state.
virtual RejectionReason rejection_reason() const = 0;

Powered by Google App Engine
This is Rietveld 408576698