#include "chrome/browser/compose/compose_enabling.h"
#include <functional>
#include <memory>
#include <tuple>
#include <type_traits>
#include "base/check.h"
#include "base/containers/contains.h"
#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/no_destructor.h"
#include "base/rand_util.h"
#include "base/strings/string_util.h"
#include "chrome/browser/about_flags.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/compose/proto/compose_optimization_guide.pb.h"
#include "chrome/browser/flag_descriptions.h"
#include "chrome/browser/optimization_guide/optimization_guide_keyed_service.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/signin/identity_manager_factory.h"
#include "chrome/common/pref_names.h"
#include "components/compose/buildflags.h"
#include "components/compose/core/browser/compose_features.h"
#include "components/compose/core/browser/compose_metrics.h"
#include "components/compose/core/browser/config.h"
#include "components/flags_ui/feature_entry.h"
#include "components/flags_ui/flags_storage.h"
#include "components/prefs/pref_service.h"
#include "components/variations/service/variations_service.h"
#include "components/variations/service/variations_service_utils.h"
#include "content/public/browser/context_menu_params.h"
#include "content/public/browser/render_frame_host.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "chromeos/constants/chromeos_features.h"
#endif
namespace {
bool AutocompleteAllowed(std::string_view autocomplete_attribute) { … }
std::unique_ptr<std::string>& GetCountryCodeOverride() { … }
std::string GetCountryCode() { … }
std::tuple<std::string, bool> IsComposeEnabledForCountry(
compose::Config config) { … }
}
int ComposeEnabling::enabled_for_testing_{ … };
int ComposeEnabling::skip_user_check_for_testing_{ … };
ComposeEnabling::ComposeEnabling(
Profile* profile,
signin::IdentityManager* identity_manager,
OptimizationGuideKeyedService* opt_guide)
: … { … }
ComposeEnabling::~ComposeEnabling() { … }
ComposeEnabling::ScopedOverride
ComposeEnabling::ScopedEnableComposeForTesting() { … }
ComposeEnabling::ScopedOverride
ComposeEnabling::ScopedSkipUserCheckForTesting() { … }
ComposeEnabling::ScopedOverride ComposeEnabling::OverrideCountryForTesting(
std::string country_code) { … }
compose::ComposeHintDecision ComposeEnabling::GetOptimizationGuidanceForUrl(
const GURL& url,
Profile* profile) { … }
base::expected<void, compose::ComposeShowStatus> ComposeEnabling::IsEnabled() { … }
bool ComposeEnabling::IsEnabledForProfile(Profile* profile) { … }
base::expected<void, compose::ComposeShowStatus> ComposeEnabling::CheckEnabling(
OptimizationGuideKeyedService* opt_guide,
signin::IdentityManager* identity_manager) { … }
base::expected<void, compose::ComposeShowStatus>
ComposeEnabling::ShouldTriggerNoStatePopup(
std::string_view autocomplete_attribute,
bool allows_writing_suggestions,
Profile* profile,
PrefService* prefs,
translate::TranslateManager* translate_manager,
const url::Origin& top_level_frame_origin,
const url::Origin& element_frame_origin,
GURL url,
bool is_msbb_enabled) { … }
bool ComposeEnabling::ShouldTriggerSavedStatePopup(
autofill::AutofillSuggestionTriggerSource trigger_source) { … }
bool ComposeEnabling::ShouldTriggerContextMenu(
Profile* profile,
translate::TranslateManager* translate_manager,
content::RenderFrameHost* rfh,
content::ContextMenuParams& params) { … }
base::expected<void, compose::ComposeShowStatus>
ComposeEnabling::PageLevelChecks(translate::TranslateManager* translate_manager,
GURL url,
const url::Origin& top_level_frame_origin,
const url::Origin& element_frame_origin,
bool is_nested_within_fenced_frame) { … }
bool ComposeEnabling::IsPageLanguageSupported(
translate::TranslateManager* translate_manager) { … }