blob: 799275c480665ef2eee94405a887b4085bfdbb8f [file] [log] [blame]
[email protected]17510602014-06-05 11:02:281// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
blundell2102f7c2015-07-09 10:00:535#include "components/omnibox/browser/keyword_extensions_delegate.h"
[email protected]17510602014-06-05 11:02:286
7KeywordExtensionsDelegate::KeywordExtensionsDelegate(
8 KeywordProvider* provider) {
9}
10
11KeywordExtensionsDelegate::~KeywordExtensionsDelegate() {
12}
13
14void KeywordExtensionsDelegate::IncrementInputId() {
15}
16
17bool KeywordExtensionsDelegate::IsEnabledExtension(
[email protected]17510602014-06-05 11:02:2818 const std::string& extension_id) {
19 return false;
20}
21
22bool KeywordExtensionsDelegate::Start(const AutocompleteInput& input,
23 bool minimal_changes,
24 const TemplateURL* template_url,
25 const base::string16& remaining_input) {
26 return false;
27}
28
29void KeywordExtensionsDelegate::EnterExtensionKeywordMode(
30 const std::string& extension_id) {
31}
32
33void KeywordExtensionsDelegate::MaybeEndExtensionKeywordMode() {
34}
Catherine Mullingsdd9f873192017-09-20 05:35:5035
36void KeywordExtensionsDelegate::DeleteSuggestion(
37 const TemplateURL* template_url,
38 const base::string16& suggestion_text) {}