// Copyright 2020 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/find_bar/find_bar_state.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/ui/find_bar/find_bar_state_factory.h" FindBarState::FindBarState(content::BrowserContext* browser_context) : … { … } FindBarState::~FindBarState() = default; // static void FindBarState::ConfigureWebContents(content::WebContents* web_contents) { … } void FindBarState::SetLastSearchText(const std::u16string& text) { … } std::u16string FindBarState::GetSearchPrepopulateText() { … }