1 // 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 5 #include "chrome/browser/autocomplete/keyword_extensions_delegate.h" 6 7 KeywordExtensionsDelegate::KeywordExtensionsDelegate( 8 KeywordProvider* provider) { 9 } 10 11 KeywordExtensionsDelegate::~KeywordExtensionsDelegate() { 12 } 13 14 void KeywordExtensionsDelegate::IncrementInputId() { 15 } 16 17 bool KeywordExtensionsDelegate::IsEnabledExtension( 18 Profile* profile, 19 const std::string& extension_id) { 20 return false; 21 } 22 23 bool KeywordExtensionsDelegate::Start(const AutocompleteInput& input, 24 bool minimal_changes, 25 const TemplateURL* template_url, 26 const base::string16& remaining_input) { 27 return false; 28 } 29 30 void KeywordExtensionsDelegate::EnterExtensionKeywordMode( 31 const std::string& extension_id) { 32 } 33 34 void KeywordExtensionsDelegate::MaybeEndExtensionKeywordMode() { 35 } 36