// Copyright 2015 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_CLIPBOARD_PROVIDER_H_ #define COMPONENTS_OMNIBOX_BROWSER_CLIPBOARD_PROVIDER_H_ #include "base/gtest_prod_util.h" #include "base/memory/raw_ptr.h" #include "components/omnibox/browser/autocomplete_provider.h" class AutocompleteProviderClient; class AutocompleteProviderListener; class ClipboardRecentContent; enum class ClipboardContentType; // Autocomplete provider offering content based on the clipboard's content. class ClipboardProvider : public AutocompleteProvider { … }; #endif // COMPONENTS_OMNIBOX_BROWSER_CLIPBOARD_PROVIDER_H_