3

When I browse to chrome://signin-dice-web-intercept/?debug it says,

Continue in a new Chromium profile? Tessa is already signed in to this Chromium profile. To keep your browsing separate, Chromium can create your own profile for you.

Who is Tessa?

Evan Carroll
  • 8,895

1 Answers1

3

I believe this is just the default name of the profile when you you don't log in on Chromium, you can see it in the code in dice_web_signin_interception_bubble_view_browsertest.cc,

    primary_account.account_id = CoreAccountId::FromGaiaId("primary_ID");
    primary_account.given_name = "Tessa";
    primary_account.full_name = "Tessa Tester";
    primary_account.email = "tessa.tester@primary.com";
    primary_account.hosted_domain =
        is_primary_account_managed ? "primary.com" : kNoHostedDomainFound;

However it seems like a poor idea to tell you that you're "already signed in" to an account that you never signed in to, and don't recognize.

Evan Carroll
  • 8,895