// Copyright 2017 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/browser.h" #include "chrome/browser/ui/find_bar/find_bar_controller.h" #include "chrome/test/base/in_process_browser_test.h" #include "content/public/test/browser_test.h" FindBarControllerTest; // Creating the FindBarController on startup can result in a startup performance // regression. This test ensures that the FindBarController isn't created until // truly needed. See https://crbug.com/783350. IN_PROC_BROWSER_TEST_F(FindBarControllerTest, NoFindBarControllerOnBrowserCreate) { … }