1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_WEBID_FEDCM_METRICS_H_
#define CONTENT_BROWSER_WEBID_FEDCM_METRICS_H_
#include "content/browser/webid/idp_network_request_manager.h"
#include "content/common/content_export.h"
#include "content/public/browser/identity_request_dialog_controller.h"
#include "services/metrics/public/cpp/ukm_builders.h"
#include "services/metrics/public/cpp/ukm_source_id.h"
#include "third_party/blink/public/mojom/credentialmanagement/credential_manager.mojom.h"
#include "third_party/blink/public/mojom/webid/federated_auth_request.mojom.h"
namespace base {
class TimeDelta;
}
namespace content {
using IdentityProviderDataPtr = scoped_refptr<IdentityProviderData>;
using MediationRequirement = ::password_manager::CredentialMediationRequirement;
using RpMode = blink::mojom::RpMode;
// This enum describes the status of a request id token call to the FedCM API.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmRequestIdTokenStatus {
// Don't change the meaning or the order of these values because they are
// being recorded in metrics and in sync with the counterpart in enums.xml.
kSuccessUsingTokenInHttpResponse = 0,
kTooManyRequests = 1,
kAborted = 2,
kUnhandledRequest = 3,
kIdpNotPotentiallyTrustworthy = 4,
kNotSelectAccount = 5,
kConfigHttpNotFound = 6,
kConfigNoResponse = 7,
kConfigInvalidResponse = 8,
kClientMetadataHttpNotFound = 9, // obsolete
kClientMetadataNoResponse = 10, // obsolete
kClientMetadataInvalidResponse = 11, // obsolete
kAccountsHttpNotFound = 12,
kAccountsNoResponse = 13,
kAccountsInvalidResponse = 14,
kIdTokenHttpNotFound = 15,
kIdTokenNoResponse = 16,
kIdTokenInvalidResponse = 17,
kIdTokenInvalidRequest = 18, // obsolete
kClientMetadataMissingPrivacyPolicyUrl = 19, // obsolete
kThirdPartyCookiesBlocked = 20, // obsolete
kDisabledInSettings = 21,
kDisabledInFlags = 22,
kWellKnownHttpNotFound = 23,
kWellKnownNoResponse = 24,
kWellKnownInvalidResponse = 25,
kConfigNotInWellKnown = 26,
kWellKnownTooBig = 27,
kDisabledEmbargo = 28,
kUserInterfaceTimedOut = 29, // obsolete
kRpPageNotVisible = 30,
kShouldEmbargo = 31,
kNotSignedInWithIdp = 32,
kAccountsListEmpty = 33,
kWellKnownListEmpty = 34,
kWellKnownInvalidContentType = 35,
kConfigInvalidContentType = 36,
kAccountsInvalidContentType = 37,
kIdTokenInvalidContentType = 38,
kSilentMediationFailure = 39,
kIdTokenIdpErrorResponse = 40,
kIdTokenCrossSiteIdpErrorResponse = 41,
kOtherIdpChosen = 42,
kMissingTransientUserActivation = 43,
kReplacedByActiveMode = 44,
kContinuationPopupClosedByUser = 45,
kSuccessUsingIdentityProviderResolve = 46,
kContinuationPopupClosedByIdentityProviderClose = 47,
kInvalidFieldsSpecified = 48,
kRpOriginIsOpaque = 49,
kConfigNotMatchingType = 50,
kLoginPopupClosedWithoutSignin = 51,
kSuppressedBySegmentationPlatform = 52,
kMaxValue = kSuppressedBySegmentationPlatform
};
// This enum describes whether user sign-in states between IDP and browser
// match.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmSignInStateMatchStatus {
// Don't change the meaning or the order of these values because they are
// being recorded in metrics and in sync with the counterpart in enums.xml.
kMatch = 0,
kIdpClaimedSignIn = 1,
kBrowserObservedSignIn = 2,
kMaxValue = kBrowserObservedSignIn
};
// This enum describes whether the browser's knowledge of whether the user is
// signed into the IDP based on observing signin/signout HTTP headers matches
// the information returned by the accounts endpoint.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmIdpSigninMatchStatus {
// Don't change the meaning or the order of these values because they are
// being recorded in metrics and in sync with the counterpart in enums.xml.
kMatchWithAccounts = 0,
kMatchWithoutAccounts = 1,
kUnknownStatusWithAccounts = 2,
kUnknownStatusWithoutAccounts = 3,
kMismatchWithNetworkError = 4,
kMismatchWithNoContent = 5,
kMismatchWithInvalidResponse = 6,
kMismatchWithUnexpectedAccounts = 7,
kMaxValue = kMismatchWithUnexpectedAccounts
};
// This enum describes the type of frame that invokes a FedCM API.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmRequesterFrameType {
// Do not change the meaning or order of these values since they are being
// recorded in metrics and in sync with the counterpart in enums.xml.
kMainFrame = 0,
kSameSiteIframe = 1,
kCrossSiteIframe = 2,
kMaxValue = kCrossSiteIframe
};
// This enum describes the status of a disconnect call to the FedCM API.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmDisconnectStatus {
// Don't change the meaning or the order of these values because they are
// being recorded in metrics and in sync with the counterpart in enums.xml.
kSuccess = 0,
kTooManyRequests = 1,
kUnhandledRequest = 2,
kNoAccountToDisconnect = 3,
kDisconnectUrlIsCrossOrigin = 4,
kDisconnectFailedOnServer = 5,
kConfigHttpNotFound = 6,
kConfigNoResponse = 7,
kConfigInvalidResponse = 8,
kDisabledInSettings = 9,
kDisabledInFlags = 10,
kWellKnownHttpNotFound = 11,
kWellKnownNoResponse = 12,
kWellKnownInvalidResponse = 13,
kWellKnownListEmpty = 14,
kConfigNotInWellKnown = 15,
kWellKnownTooBig = 16,
kWellKnownInvalidContentType = 17,
kConfigInvalidContentType = 18,
kIdpNotPotentiallyTrustworthy = 19,
kMaxValue = kIdpNotPotentiallyTrustworthy
};
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmSetLoginStatusIgnoredReason {
kFrameTreeLookupFailed = 0,
kInFencedFrame = 1,
kCrossOrigin = 2,
kMaxValue = kCrossOrigin
};
// This enum describes the result of the error dialog.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmErrorDialogResult {
kMoreDetails = 0,
kGotItWithoutMoreDetails = 1,
kGotItWithMoreDetails = 2,
kCloseWithoutMoreDetails = 3,
kCloseWithMoreDetails = 4,
kSwipeWithoutMoreDetails = 5,
kSwipeWithMoreDetails = 6,
kOtherWithoutMoreDetails = 7,
kOtherWithMoreDetails = 8,
kMaxValue = kOtherWithMoreDetails
};
// Whether we were able to open the continue_on popup and the reason if not.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmContinueOnPopupStatus {
kPopupOpened = 0,
kUrlNotSameOrigin = 1,
kPopupNotAllowed = 2,
kUrlNotSameOriginAndPopupNotAllowed = 3,
kMaxValue = kUrlNotSameOriginAndPopupNotAllowed
};
// The result of the continue_on popup.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmContinueOnPopupResult {
kTokenReceived = 0,
kWindowClosed = 1,
kClosedByIdentityProviderClose = 2,
kMaxValue = kClosedByIdentityProviderClose
};
// This enum is used when we fail a FedCM request due to a bad
// lifecycle state.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmLifecycleStateFailureReason {
kOther = 0,
kSpeculative = 1,
kPendingCommit = 2,
kPrerendering = 3,
kInBackForwardCache = 4,
kRunningUnloadHandlers = 5,
kReadyToBeDeleted = 6,
kMaxValue = kReadyToBeDeleted
};
// This enum is used when a token request is invoked while there's a pending
// one. These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class FedCmMultipleRequestsRpMode {
kPassiveThenPassive = 0,
kPassiveThenActive = 1,
kActiveThenPassive = 2,
kActiveThenActive = 3,
kMaxValue = kActiveThenActive
};
// This enum tracks whether the RP requested additional scopes and/or
// parameters. These values are persisted to logs. Entries should not be
// renumbered and numeric values should never be reused.
enum class FedCmRpParameters {
kHasParameters = 0,
kHasNonDefaultScope = 1,
kHasParametersAndNonDefaultScope = 2,
kMaxValue = kHasParametersAndNonDefaultScope
};
// This enum tracks the user's result after using a different account. These
// values are persisted to logs. Entries should not be renumbered and numeric
// values should never be reused.
enum class FedCmUseOtherAccountResult {
kUserSignsInWithNewAccount = 0,
kUserSignsInWithExistingAccount = 1,
kUserDoesNotSignIn = 2,
kMaxValue = kUserDoesNotSignIn
};
// This enum describes the outcome of the verifying dialog. These values are
// persisted to logs. Entries should not be renumbered and numeric values should
// never be reused.
enum class FedCmVerifyingDialogResult {
kSuccessExplicit = 0,
kSuccessAutoReauthn = 1,
kCancelExplicit = 2,
kCancelAutoReauthn = 3,
kDestroyExplicit = 4,
kDestroyAutoReauthn = 5,
kMaxValue = kDestroyAutoReauthn
};
// This enum describes the third party cookies status. These values are
// persisted to logs. Entries should not be renumbered and numeric values should
// never be reused.
enum class FedCmThirdPartyCookiesStatus {
kEnabledInSettings = 0,
kDisabledInSettings = 1,
kMaxValue = kDisabledInSettings
};
class CONTENT_EXPORT FedCmMetrics {
public:
explicit FedCmMetrics(const ukm::SourceId page_source_id);
~FedCmMetrics();
// Records the number of times navigator.credentials.get() is called in a
// document. Requests made when FedCM is disabled or when there is a pending
// FedCM request are not counted.
static void RecordNumRequestsPerDocument(ukm::SourceId page_source_id,
const int num_requests);
// Records whether the browser's knowledge of whether the user is signed into
// the IDP based on observing signin/signout HTTP headers matches the
// information returned by the accounts endpoint.
static void RecordIdpSigninMatchStatus(
std::optional<bool> idp_signin_status,
IdpNetworkRequestManager::ParseStatus accounts_endpoint_status);
// Records the time from when a call to the API was made to when the accounts
// dialog is shown. This does not include flows that involve LoginToIdP. e.g.
// mismatch flow or active flow with users whose login status is "logged-out".
void RecordShowAccountsDialogTime(
const std::vector<IdentityProviderDataPtr>& providers,
base::TimeDelta duration);
// Records the time from when a call to the API was made to when the accounts
// dialog is shown in breakdown. In case of multi-IdP, this records the max
// time across IdPs. This does not include flows that involve LoginToIdP. e.g.
// mismatch flow or active flow with users whose login status is "logged-out".
void RecordShowAccountsDialogTimeBreakdown(
base::TimeDelta well_known_and_config_fetch_duration,
base::TimeDelta accounts_fetch_duration,
base::TimeDelta client_metadata_fetch_duration);
// Records the time from when a call to the API was made to when the
// well-known and config files are fetched. This helps with measuring when the
// login_url could be available.
void RecordWellKnownAndConfigFetchTime(base::TimeDelta duration);
// Records the time from when the accounts dialog is shown to when the user
// presses the Continue active of an account of the given provider.
void RecordContinueOnPopupTime(const GURL& provider,
base::TimeDelta duration);
// Records metrics when the user explicitly closes the accounts dialog without
// selecting any accounts. `duration` is the time from when the accounts
// dialog was shown to when the user closed the dialog.
void RecordCancelOnDialogTime(
const std::vector<IdentityProviderDataPtr>& providers,
base::TimeDelta duration);
// Records the duration from when an accounts dialog is shown to when it is
// destroyed.
void RecordAccountsDialogShownDuration(
const std::vector<IdentityProviderDataPtr>& providers,
base::TimeDelta duration);
// Records the duration from when a mismatch dialog is shown to when it is
// destroyed or user triggers IDP sign-in pop-up window.
void RecordMismatchDialogShownDuration(
const std::vector<IdentityProviderDataPtr>& providers,
base::TimeDelta duration);
// Records the reason that closed accounts dialog without selecting any
// accounts. Unlike RecordCancelOnDialogTime() this metric is recorded in
// cases that the acccounts dialog was closed without an explicit user action.
void RecordCancelReason(
IdentityRequestDialogController::DismissReason dismiss_reason);
// Records the time from when the user presses the Continue active to when the
// token response is received. Also records the overall time from when the API
// is called to when the token response is received.
void RecordTokenResponseAndTurnaroundTime(const GURL& provider,
base::TimeDelta token_response_time,
base::TimeDelta turnaround_time);
// Records the time from when the user presses the Continue active to when
// the continue_on response is received. Also records the overall time from
// when the API is called to when the IdentityProvider.resolve token is
// received.
void RecordContinueOnResponseAndTurnaroundTime(
base::TimeDelta token_response_time,
base::TimeDelta turnaround_time);
// Records the status of the |RequestToken| call. Also records the number of
// IDPs requested and the number of IDPs for which a mismatch was found.
// |requested_providers| contains all IDPs that were requested in the get()
// call.
void RecordRequestTokenStatus(
FedCmRequestIdTokenStatus status,
MediationRequirement requirement,
const std::vector<GURL>& requested_providers,
int num_idps_mismatch,
const std::optional<GURL>& selected_idp_config_url,
const RpMode& rp_mode,
std::optional<FedCmUseOtherAccountResult> use_other_account_result,
std::optional<FedCmVerifyingDialogResult> verifying_dialog_result,
FedCmThirdPartyCookiesStatus tpc_status,
const FedCmRequesterFrameType& requester_frame_type,
std::optional<bool> has_signin_account);
// Records whether user sign-in states between IDP and browser match.
void RecordSignInStateMatchStatus(const GURL& provider,
FedCmSignInStateMatchStatus status);
// Records whether the user selected account is for sign-in or not.
void RecordIsSignInUser(bool is_sign_in);
// Records whether the frame is visible or active upon ready to show accounts
// UI.
void RecordWebContentsStatusUponReadyToShowDialog(bool is_visible,
bool is_active);
// This enum is used in histograms. Do not remove or modify existing entries.
// You may add entries at the end, and update |kMaxValue|.
enum class NumAccounts {
kZero = 0,
kOne = 1,
kMultiple = 2,
kMaxValue = kMultiple
};
// Records several auto reauthn metrics using the given parameters.
// |has_single_returning_account| is nullopt when we are recording the metrics
// during a failure that happened before the accounts fetch.
void RecordAutoReauthnMetrics(
std::optional<bool> has_single_returning_account,
const IdentityRequestAccount* auto_signin_account,
bool auto_reauthn_success,
bool is_auto_reauthn_setting_blocked,
bool is_auto_reauthn_embargoed,
std::optional<base::TimeDelta> time_from_embargo,
bool requires_user_mediation);
// Records a sample when an accounts dialog is shown.
void RecordAccountsDialogShown(
const std::vector<IdentityProviderDataPtr>& providers);
// This enum is used in histograms. Do not remove or modify existing entries.
// You may add entries at the end, and update |kMaxValue|.
enum class MismatchDialogType {
kFirstWithoutHints,
kFirstWithHints,
kRepeatedWithoutHints,
kRepeatedWithHints,
kMaxValue = kRepeatedWithHints
};
// Records a sample when a single IDP mismatch dialog is shown. Also records
// whether this is a mismatch seen for the first time or a if there has
// already been a mismatch dialog for this call. Finally, records when there
// is a repeated mismatch and hints were requested in the call.
void RecordSingleIdpMismatchDialogShown(const IdentityProviderData& provider,
bool has_shown_mismatch,
bool has_hints);
// Records a sample when an accounts request is sent.
void RecordAccountsRequestSent(const GURL& provider_url);
// Records metrics for a disconnect call. `duration` is nullopt if the
// disconnect fetch request was not sent, in which case we do not log the
// metric. Because this is a separate API from a token request, a different
// session ID is passed to this metric.
void RecordDisconnectMetrics(
FedCmDisconnectStatus status,
std::optional<base::TimeDelta> duration,
const FedCmRequesterFrameType& requester_frame_type,
const GURL& provider_url);
// Records the status of opening the continue_on dialog.
void RecordContinueOnPopupStatus(FedCmContinueOnPopupStatus status);
// Records the outcome of the continue_on dialog.
void RecordContinueOnPopupResult(FedCmContinueOnPopupResult result);
// Records whether parameters or scopes were specified.
void RecordRpParameters(FedCmRpParameters parameters);
// Records the outcome of the error dialog.
void RecordErrorDialogResult(FedCmErrorDialogResult result,
const GURL& provider_url);
// Records metrics before the error dialog has been shown.
void RecordErrorMetricsBeforeShowingErrorDialog(
IdpNetworkRequestManager::FedCmTokenResponseType response_type,
std::optional<IdpNetworkRequestManager::FedCmErrorDialogType> dialog_type,
std::optional<IdpNetworkRequestManager::FedCmErrorUrlType> url_type,
const GURL& provider_url);
// Records the RpMode of two consecutive requests when one is invoked while
// the other is pending.
void RecordMultipleRequestsRpMode(
blink::mojom::RpMode pending_request_rp_mode,
blink::mojom::RpMode new_request_rp_mode,
const std::vector<GURL>& requested_providers);
// Records the time from when a User Info API call, if any, most likely upon
// page load, to when the first Active Mode API is called afterwards, if any.
void RecordTimeBetweenUserInfoAndActiveModeAPI(base::TimeDelta duration);
// Records the number of accounts matching a given filter, when the FedCM call
// involved filtering out accounts with that filter. Filter must be one of
// "LoginHint", "DomainHint", and "AccountLabel".
void RecordNumMatchingAccounts(size_t accounts_remaining,
const std::string& filter_type);
// Records whether a FedCM API call gets rejected because other IdPs have
// already initiated an API call.
void RecordMultipleRequestsFromDifferentIdPs(bool has_collision);
// Records whether the RP's URL has a path.
void RecordRpUrlHasPath(bool rp_url_has_path);
// Records the count of identity providers in the request
void RecordIdentityProvidersCount(int count);
// Returns the session ID.
int GetSessionID() const;
private:
ukm::SourceId GetOrCreateProviderSourceId(const GURL& provider);
ukm::builders::Blink_FedCm* GetOrCreateFedCmBuilder();
ukm::builders::Blink_FedCmIdp* GetOrCreateFedCmIdpBuilder(
const GURL& provider);
// Builder to log the Blink.FedCm UKM event.
std::unique_ptr<ukm::builders::Blink_FedCm> fedcm_builder_;
// Map of provider's config URL to its builder to log the Blink.FedCmIdp UKM
// event.
std::map<GURL, std::unique_ptr<ukm::builders::Blink_FedCmIdp>>
provider_to_fedcm_idp_builder_;
// The page's SourceId. Used to log the UKM event Blink.FedCm.
ukm::SourceId page_source_id_;
// Session ID associated with this request to include in metrics recorded.
int session_id_;
// The SourceId to be used to log the UKM event Blink.FedCmIdp. Maps a
// provider's config URL to its UKM SourceId.
std::map<GURL, ukm::SourceId> provider_source_ids_;
// Map of provider's config URL to its number of accounts request sent.
std::map<GURL, int> accounts_request_sent_;
// Map of provider's config URL to its number of accounts dialogs shown.
std::map<GURL, int> accounts_dialog_shown_;
// Map of provider's config URL to its number of mismatch dialogs shown.
std::map<GURL, int> mismatch_dialog_shown_;
// Whether |RecordRequestTokenStatus| has been called.
bool has_recorded_request_token_status_{false};
};
// The following metric is recorded for UMA and UKM, but does not require an
// existing FedCM call. Records metrics associated with a preventSilentAccess()
// call from the given RenderFrameHost.
void RecordPreventSilentAccess(
const FedCmRequesterFrameType& requester_frame_type,
int source_id);
// Records the page scroll Y-axis position upon account selection.
void RecordAccountSelectionScrollPosition(int source_id,
int session_id,
const gfx::Point& scroll_position);
// The following are UMA-only recordings, hence do not need to be in the
// FedCmMetrics class.
// Records whether an IDP returns an approved clients list in the response.
void RecordApprovedClientsExistence(bool has_approved_clients);
// Records the size of the approved clients list if applicable.
void RecordApprovedClientsSize(int size);
// Records the net::Error received from the accounts list endpoint when the IDP
// SignIn status is set to SignedOut due to no accounts received.
void RecordIdpSignOutNetError(int response_code);
// Records why there's no valid account in the response.
void RecordAccountsResponseInvalidReason(
IdpNetworkRequestManager::AccountsResponseInvalidReason reason);
// Records the reason why we ignored an attempt to set a login status.
void RecordSetLoginStatusIgnoredReason(FedCmSetLoginStatusIgnoredReason reason);
// Records the lifecycle state if we fail a FedCM request due to a page not
// being primary.
void RecordLifecycleStateFailureReason(FedCmLifecycleStateFailureReason reason);
// Records the number of accounts received before applying login/domain hints
// filter.
void RecordRawAccountsSize(int size);
// Records the number of accounts received after applying login/domain hints
// filter. If no account left, nothing will be recorded.
void RecordReadyToShowAccountsSize(int size);
} // namespace content
#endif // CONTENT_BROWSER_WEBID_FEDCM_METRICS_H_
|