// 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_LOCATION_BAR_MODEL_IMPL_H_ #define COMPONENTS_OMNIBOX_BROWSER_LOCATION_BAR_MODEL_IMPL_H_ #include <stddef.h> #include <string> #include "base/compiler_specific.h" #include "base/memory/raw_ptr.h" #include "components/omnibox/browser/location_bar_model.h" #include "components/url_formatter/url_formatter.h" #include "url/gurl.h" class LocationBarModelDelegate; // This class is the model used by the toolbar, location bar and autocomplete // edit. It populates its states from the current navigation entry retrieved // from the navigation controller returned by GetNavigationController(). class LocationBarModelImpl : public LocationBarModel { … }; #endif // COMPONENTS_OMNIBOX_BROWSER_LOCATION_BAR_MODEL_IMPL_H_