Home | History | Annotate | Download | only in login
      1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_AUTH_ATTEMPT_STATE_RESOLVER_H_
      6 #define CHROME_BROWSER_CHROMEOS_LOGIN_AUTH_ATTEMPT_STATE_RESOLVER_H_
      7 #pragma once
      8 
      9 namespace chromeos {
     10 
     11 class AuthAttemptStateResolver {
     12  public:
     13   AuthAttemptStateResolver();
     14   virtual ~AuthAttemptStateResolver();
     15   // Gather existing status info and attempt to resolve it into one of a
     16   // set of discrete states.
     17   virtual void Resolve() = 0;
     18 };
     19 
     20 }  // namespace chromeos
     21 
     22 #endif  // CHROME_BROWSER_CHROMEOS_LOGIN_AUTH_ATTEMPT_STATE_RESOLVER_H_
     23