chromium/chrome/browser/download/bubble/download_bubble_prefs.cc

// 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.

#include "chrome/browser/download/bubble/download_bubble_prefs.h"

#include "base/feature_list.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/download/download_core_service.h"
#include "chrome/browser/download/download_core_service_factory.h"
#include "chrome/browser/enterprise/connectors/connectors_service.h"
#include "chrome/common/pref_names.h"
#include "components/prefs/pref_service.h"
#include "components/safe_browsing/core/common/features.h"

namespace download {

bool IsDownloadBubbleEnabled() {}

bool ShouldShowDownloadBubble(Profile* profile) {}

bool DoesDownloadConnectorBlock(Profile* profile, const GURL& url) {}

bool IsDownloadBubblePartialViewControlledByPref() {}

bool IsDownloadBubblePartialViewEnabled(Profile* profile) {}

void SetDownloadBubblePartialViewEnabled(Profile* profile, bool enabled) {}

bool IsDownloadBubblePartialViewEnabledDefaultPrefValue(Profile* profile) {}

int DownloadBubblePartialViewImpressions(Profile* profile) {}

void SetDownloadBubblePartialViewImpressions(Profile* profile, int count) {}

}  // namespace download