// 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_BUILTIN_PROVIDER_H_ #define COMPONENTS_OMNIBOX_BROWSER_BUILTIN_PROVIDER_H_ #include <string> #include <vector> #include "base/memory/raw_ptr.h" #include "components/omnibox/browser/autocomplete_provider.h" class AutocompleteInput; class AutocompleteProviderClient; class TemplateURLService; // This is the provider for built-in URLs, such as about:settings and // chrome://version. class BuiltinProvider : public AutocompleteProvider { … }; #endif // COMPONENTS_OMNIBOX_BROWSER_BUILTIN_PROVIDER_H_