// Copyright 2018 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_ACTIONS_OMNIBOX_PEDAL_H_ #define COMPONENTS_OMNIBOX_BROWSER_ACTIONS_OMNIBOX_PEDAL_H_ #include <unordered_set> #include <vector> #include "base/gtest_prod_util.h" #include "base/values.h" #include "build/build_config.h" #include "components/omnibox/browser/actions/omnibox_action.h" #include "components/omnibox/browser/actions/omnibox_pedal_concepts.h" #include "components/omnibox/browser/buildflags.h" #include "url/gurl.h" // Conceptually, a Pedal is a fixed action that can be taken by the user // pressing a button or taking a new dedicated suggestion when some // associated intention is detected in an omnibox match suggestion. // The typical action is to navigate to an internal Chrome surface // like settings, but other actions like translation or launching // an incognito window are possible. The intention is detected by // checking trigger queries against suggested match queries. class OmniboxPedal : public OmniboxAction { … }; // This is a simple pedal suitable only for use by tests. class TestOmniboxPedalClearBrowsingData : public OmniboxPedal { … }; #endif // COMPONENTS_OMNIBOX_BROWSER_ACTIONS_OMNIBOX_PEDAL_H_