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

Unified Diff: chrome/browser/chromeos/login/enrollment/enrollment_screen.h

Issue 2526973002: Added retry policy (Closed)
Patch Set: Fixed GN problem Created 3 years, 10 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 | « chrome/browser/chromeos/BUILD.gn ('k') | chrome/browser/chromeos/login/enrollment/enrollment_screen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/enrollment/enrollment_screen.h
diff --git a/chrome/browser/chromeos/login/enrollment/enrollment_screen.h b/chrome/browser/chromeos/login/enrollment/enrollment_screen.h
index 6ccefec99d23346a24fbbc348a6d843afc5ca77c..3beb8a804698842b00270edbed19404663b8cbe6 100644
--- a/chrome/browser/chromeos/login/enrollment/enrollment_screen.h
+++ b/chrome/browser/chromeos/login/enrollment/enrollment_screen.h
@@ -9,6 +9,7 @@
#include <string>
#include "base/callback_forward.h"
+#include "base/cancelable_callback.h"
#include "base/compiler_specific.h"
#include "base/gtest_prod_util.h"
#include "base/macros.h"
@@ -19,6 +20,7 @@
#include "chrome/browser/chromeos/policy/enrollment_config.h"
#include "components/policy/core/common/cloud/cloud_policy_constants.h"
#include "components/policy/core/common/cloud/enterprise_metrics.h"
+#include "net/base/backoff_entry.h"
namespace base {
class ElapsedTimer;
@@ -81,6 +83,7 @@ class EnrollmentScreen
}
private:
+ friend class EnrollmentScreenUnitTest;
FRIEND_TEST_ALL_PREFIXES(EnrollmentScreenTest, TestSuccess);
FRIEND_TEST_ALL_PREFIXES(AttestationAuthEnrollmentScreenTest, TestCancel);
FRIEND_TEST_ALL_PREFIXES(ForcedAttestationAuthEnrollmentScreenTest,
@@ -93,6 +96,9 @@ class EnrollmentScreen
FRIEND_TEST_ALL_PREFIXES(EnterpriseEnrollmentTest,
TestAuthCodeGetsProperlyReceivedFromGaia);
FRIEND_TEST_ALL_PREFIXES(HandsOffNetworkScreenTest, RequiresNoInput);
+ FRIEND_TEST_ALL_PREFIXES(EnrollmentScreenUnitTest, Retries);
+ FRIEND_TEST_ALL_PREFIXES(EnrollmentScreenUnitTest, DoesNotRetryOnTopOfUser);
+ FRIEND_TEST_ALL_PREFIXES(EnrollmentScreenUnitTest, DoesNotRetryAfterSuccess);
// The authentication mechanisms that this class can use.
enum Auth {
@@ -144,6 +150,14 @@ class EnrollmentScreen
// Advance to the next authentication mechanism if possible.
bool AdvanceToNextAuth();
+ // Similar to OnRetry(), but responds to a timer instead of the user
+ // pressing the Retry button.
+ void AutomaticRetry();
+
+ // Processes a request to retry enrollment.
+ // Called by OnRetry() and AutomaticRetry().
+ void ProcessRetry();
+
pairing_chromeos::ControllerPairingController* shark_controller_ = nullptr;
EnrollmentScreenActor* actor_;
@@ -155,6 +169,10 @@ class EnrollmentScreen
std::string enrolling_user_domain_;
std::string auth_code_;
std::unique_ptr<base::ElapsedTimer> elapsed_timer_;
+ net::BackoffEntry::Policy retry_policy_;
+ std::unique_ptr<net::BackoffEntry> retry_backoff_;
+ base::CancelableClosure retry_task_;
+ int num_retries_ = 0;
std::unique_ptr<EnterpriseEnrollmentHelper> enrollment_helper_;
base::WeakPtrFactory<EnrollmentScreen> weak_ptr_factory_;
« no previous file with comments | « chrome/browser/chromeos/BUILD.gn ('k') | chrome/browser/chromeos/login/enrollment/enrollment_screen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698