// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_PAYMENTS_UI_CONSTANTS_H_ #define CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_PAYMENTS_UI_CONSTANTS_H_ #include "base/time/time.h" #include "ui/gfx/geometry/insets.h" namespace autofill { constexpr int kMigrationDialogMainContainerChildSpacing = …; constexpr auto kMigrationDialogInsets = …; // The time span an Autofill card bubble should be visible even if the document // navigates away meanwhile. This is to ensure that the user has time to see // the bubble. constexpr base::TimeDelta kAutofillBubbleSurviveNavigationTime = …; // The delay before dismissing the progress dialog after the progress throbber // shows the checkmark. This delay is for users to identify the status change. constexpr base::TimeDelta kDelayBeforeDismissingProgressDialog = …; // The duration that the "Get New Code" link is disabled after it is clicked in // Card Unmask OTP Input Dialog. constexpr base::TimeDelta kNewOtpCodeLinkDisabledDuration = …; } // namespace autofill #endif // CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_PAYMENTS_UI_CONSTANTS_H_