File: roll_back_mode_b_infobar_controller.cc

package info (click to toggle)
chromium 143.0.7499.109-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,786,824 kB
  • sloc: cpp: 35,783,839; ansic: 7,477,365; javascript: 3,962,116; python: 1,480,521; xml: 764,832; asm: 710,816; pascal: 188,028; sh: 88,717; perl: 88,692; objc: 79,984; sql: 57,625; cs: 42,265; fortran: 24,101; makefile: 22,509; tcl: 15,277; php: 14,018; yacc: 9,043; ruby: 7,553; awk: 3,720; lisp: 3,233; lex: 1,330; ada: 727; jsp: 228; sed: 36
file content (85 lines) | stat: -rw-r--r-- 3,463 bytes parent folder | download | duplicates (5)
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
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/cookie_controls/roll_back_mode_b_infobar_controller.h"

#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/browser/ui/cookie_controls/roll_back_mode_b_infobar_delegate.h"
#include "components/infobars/content/content_infobar_manager.h"
#include "components/infobars/core/infobar.h"
#include "components/infobars/core/infobar_manager.h"
#include "components/prefs/pref_service.h"
#include "components/privacy_sandbox/tracking_protection_prefs.h"
#include "components/privacy_sandbox/tracking_protection_settings.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/web_contents.h"

RollBackModeBInfoBarController::RollBackModeBInfoBarController(
    content::WebContents* web_contents)
    : content::WebContentsObserver(web_contents) {}

RollBackModeBInfoBarController::~RollBackModeBInfoBarController() = default;

void RollBackModeBInfoBarController::DidStartNavigation(
    content::NavigationHandle* navigation_handle) {
  Profile* profile =
      Profile::FromBrowserContext(web_contents()->GetBrowserContext());
  // Offboard here iff the user *did not* block 3PCs in Mode B and therefore
  // will not need their 3PC blocking state updated (setting 3PC blocking
  // state here creates a startup race condition with local pref resolution).
  if (profile && navigation_handle->IsInPrimaryMainFrame() &&
      !profile->GetPrefs()->GetBoolean(prefs::kBlockAll3pcToggleEnabled)) {
    privacy_sandbox::MaybeSetRollbackPrefsModeB(
        SyncServiceFactory::GetForProfile(profile), profile->GetPrefs());
  }
}

void RollBackModeBInfoBarController::DidFinishNavigation(
    content::NavigationHandle* navigation_handle) {
  Profile* profile =
      Profile::FromBrowserContext(web_contents()->GetBrowserContext());
  if (infobar_ || !profile) {
    return;
  }
  // Offboard here iff the user *did* block 3PCs in Mode B. There's no
  // material difference between doing this here and on DidStartNavigation, as
  // the user will continue having 3PCs blocked, and this avoids the race.
  if (profile->GetPrefs()->GetBoolean(prefs::kBlockAll3pcToggleEnabled)) {
    privacy_sandbox::MaybeSetRollbackPrefsModeB(
        SyncServiceFactory::GetForProfile(profile), profile->GetPrefs());
    return;
  }
  if (!navigation_handle->HasCommitted() ||
      !navigation_handle->IsInPrimaryMainFrame() ||
      !profile->GetPrefs()->GetBoolean(prefs::kShowRollbackUiModeB)) {
    return;
  }

  if (auto* infobar_manager =
          infobars::ContentInfoBarManager::FromWebContents(web_contents())) {
    infobar_ = RollBackModeBInfoBarDelegate::Create(infobar_manager);
    if (infobar_) {
      infobar_scoped_observation_.Observe(infobar_manager);
      profile->GetPrefs()->SetBoolean(prefs::kShowRollbackUiModeB, false);
    }
  }
}

void RollBackModeBInfoBarController::OnVisibilityChanged(
    content::Visibility visibility) {
  // Auto-dismiss `infobar_` if the tab is now hidden.
  if (infobar_ && visibility == content::Visibility::HIDDEN) {
    infobar_->RemoveSelf();
  }
}

void RollBackModeBInfoBarController::OnInfoBarRemoved(
    infobars::InfoBar* infobar,
    bool animate) {
  if (infobar == infobar_) {
    infobar_scoped_observation_.Reset();
    infobar_ = nullptr;
  }
}