// 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. #ifndef COMPONENTS_OMNIBOX_BROWSER_TEST_OMNIBOX_VIEW_H_ #define COMPONENTS_OMNIBOX_BROWSER_TEST_OMNIBOX_VIEW_H_ #include <stddef.h> #include <string> #include "components/omnibox/browser/omnibox_view.h" #include "ui/gfx/range/range.h" struct AutocompleteMatch; // Fake implementation of OmniboxView for use in tests. class TestOmniboxView : public OmniboxView { … }; #endif // COMPONENTS_OMNIBOX_BROWSER_TEST_OMNIBOX_VIEW_H_