// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // This is an interface for the platform specific FindBar. It is responsible // for drawing the FindBar bar on the platform and is owned by the // FindBarController. #ifndef CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_ #define CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_ #include <string> #include "build/build_config.h" class FindBarController; class FindBarTesting; namespace find_in_page { class FindNotificationDetails; } namespace gfx { class Point; class Range; } #if BUILDFLAG(IS_MAC) namespace views { class Widget; } #endif class FindBar { … }; class FindBarTesting { … }; #endif // CHROME_BROWSER_UI_FIND_BAR_FIND_BAR_H_