Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(460)

Side by Side Diff: components/omnibox/keyword_extensions_delegate.cc

Issue 469623004: Move KeywordProvider to components/omnibox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move tests Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « components/omnibox/keyword_extensions_delegate.h ('k') | components/omnibox/keyword_provider.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/autocomplete/keyword_extensions_delegate.h" 5 #include "components/omnibox/keyword_extensions_delegate.h"
6 6
7 KeywordExtensionsDelegate::KeywordExtensionsDelegate( 7 KeywordExtensionsDelegate::KeywordExtensionsDelegate(
8 KeywordProvider* provider) { 8 KeywordProvider* provider) {
9 } 9 }
10 10
11 KeywordExtensionsDelegate::~KeywordExtensionsDelegate() { 11 KeywordExtensionsDelegate::~KeywordExtensionsDelegate() {
12 } 12 }
13 13
14 void KeywordExtensionsDelegate::IncrementInputId() { 14 void KeywordExtensionsDelegate::IncrementInputId() {
15 } 15 }
16 16
17 bool KeywordExtensionsDelegate::IsEnabledExtension( 17 bool KeywordExtensionsDelegate::IsEnabledExtension(
18 const std::string& extension_id) { 18 const std::string& extension_id) {
19 return false; 19 return false;
20 } 20 }
21 21
22 bool KeywordExtensionsDelegate::Start(const AutocompleteInput& input, 22 bool KeywordExtensionsDelegate::Start(const AutocompleteInput& input,
23 bool minimal_changes, 23 bool minimal_changes,
24 const TemplateURL* template_url, 24 const TemplateURL* template_url,
25 const base::string16& remaining_input) { 25 const base::string16& remaining_input) {
26 return false; 26 return false;
27 } 27 }
28 28
29 void KeywordExtensionsDelegate::EnterExtensionKeywordMode( 29 void KeywordExtensionsDelegate::EnterExtensionKeywordMode(
30 const std::string& extension_id) { 30 const std::string& extension_id) {
31 } 31 }
32 32
33 void KeywordExtensionsDelegate::MaybeEndExtensionKeywordMode() { 33 void KeywordExtensionsDelegate::MaybeEndExtensionKeywordMode() {
34 } 34 }
OLDNEW
« no previous file with comments | « components/omnibox/keyword_extensions_delegate.h ('k') | components/omnibox/keyword_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698