chromium/chrome/browser/new_tab_page/feature_promo_helper/new_tab_page_feature_promo_helper.cc

// Copyright 2023 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/new_tab_page/feature_promo_helper/new_tab_page_feature_promo_helper.h"

#include "chrome/browser/search/search.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/user_education/user_education_service.h"
#include "components/feature_engagement/public/event_constants.h"
#include "components/feature_engagement/public/feature_constants.h"
#include "ui/base/ui_base_features.h"

void NewTabPageFeaturePromoHelper::RecordPromoFeatureUsage(
    const base::Feature& feature,
    content::WebContents* web_contents) {}

// For testing purposes only.
void NewTabPageFeaturePromoHelper::
    SetDefaultSearchProviderIsGoogleForTesting(bool value) {}

bool NewTabPageFeaturePromoHelper::DefaultSearchProviderIsGoogle(
    Profile* profile) {}

void NewTabPageFeaturePromoHelper::MaybeShowFeaturePromo(
    const base::Feature& iph_feature,
    content::WebContents* web_contents) {}

void NewTabPageFeaturePromoHelper::CloseFeaturePromo(
    const base::Feature& iph_feature,
    content::WebContents* web_contents) {}

bool NewTabPageFeaturePromoHelper::IsSigninModalDialogOpen(
    content::WebContents* web_contents) {}