blob: 52eca7441d866fd85d5179f9e85a25e2364d0744 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/search_engines/search_terms_data.h"
#include "base/check.h"
#include "components/google/core/common/google_util.h"
#include "components/lens/lens_features.h"
#include "url/gurl.h"
SearchTermsData::SearchTermsData() = default;
SearchTermsData::~SearchTermsData() = default;
std::string SearchTermsData::GoogleBaseURLValue() const {
return google_util::kGoogleHomepageURL;
}
std::string SearchTermsData::GoogleBaseSearchByImageURLValue() const {
const std::string kGoogleHomepageURLPath = std::string("searchbyimage/");
// If both LensStandalone and LensRegionSearch features are enabled,
// LensStandalone parameters will take precedence even if the values differ.
if (base::FeatureList::IsEnabled(lens::features::kLensStandalone)) {
return lens::features::GetHomepageURLForImageSearch();
} else if (base::FeatureList::IsEnabled(lens::features::kLensRegionSearch)) {
return lens::features::GetHomepageURLForRegionSearch();
}
return google_util::kGoogleHomepageURL + kGoogleHomepageURLPath;
}
std::string SearchTermsData::GoogleBaseSuggestURLValue() const {
// Start with the Google base URL.
const GURL base_url(GoogleBaseURLValue());
DCHECK(base_url.is_valid());
GURL::Replacements repl;
// Replace any existing path with "/complete/".
repl.SetPathStr("/complete/");
// Clear the query and ref.
repl.ClearQuery();
repl.ClearRef();
return base_url.ReplaceComponents(repl).spec();
}
std::string SearchTermsData::GetApplicationLocale() const {
return "en";
}
std::u16string SearchTermsData::GetRlzParameterValue(bool from_app_list) const {
return std::u16string();
}
std::string SearchTermsData::GetSearchClient() const {
return std::string();
}
std::string SearchTermsData::GetSuggestClient() const {
return std::string();
}
std::string SearchTermsData::GetSuggestRequestIdentifier() const {
return std::string();
}
std::string SearchTermsData::GoogleImageSearchSource() const {
return std::string();
}
std::string SearchTermsData::GetYandexReferralID() const {
return std::string();
}
std::string SearchTermsData::GetMailRUReferralID() const {
return std::string();
}
size_t SearchTermsData::EstimateMemoryUsage() const {
return 0;
}