// Copyright 2021 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_FAKE_TAB_MATCHER_H_ #define COMPONENTS_OMNIBOX_BROWSER_FAKE_TAB_MATCHER_H_ #include <string> #include "components/omnibox/browser/tab_matcher.h" // Fake implementation of TabMatcher, allowing arbitrary string matching for use // with tests. class FakeTabMatcher : public TabMatcher { … }; #endif // COMPONENTS_OMNIBOX_BROWSER_FAKE_TAB_MATCHER_H_