#ifndef CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_CONTROLLER_H_
#define CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_CONTROLLER_H_
#include <memory>
#include "base/scoped_observation.h"
#include "components/find_in_page/find_result_observer.h"
#include "components/find_in_page/find_tab_helper.h"
#include "content/public/browser/web_contents_observer.h"
class FindBar;
class FindBarPlatformHelper;
namespace content {
class WebContents;
}
namespace gfx {
class Rect;
}
namespace find_in_page {
enum class SelectionAction;
enum class ResultAction;
}
class FindBarController : public content::WebContentsObserver,
public find_in_page::FindResultObserver { … };
#endif