// Copyright 2012 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_LOCATION_BAR_MODEL_H_ #define COMPONENTS_OMNIBOX_BROWSER_TEST_LOCATION_BAR_MODEL_H_ #include <stddef.h> #include <memory> #include <string> #include "base/compiler_specific.h" #include "base/memory/raw_ptr.h" #include "components/omnibox/browser/location_bar_model.h" namespace gfx { struct VectorIcon; } // A LocationBarModel that is backed by instance variables, which are // initialized with some basic values that can be changed with the provided // setters. This should be used only for testing. class TestLocationBarModel : public LocationBarModel { … }; #endif // COMPONENTS_OMNIBOX_BROWSER_TEST_LOCATION_BAR_MODEL_H_