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

Side by Side Diff: chrome/browser/autocomplete/autocomplete.cc

Issue 6731036: Enabled pressing TAB to cycle through the Omnibox results. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 8 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/autocomplete.h" 5 #include "chrome/browser/autocomplete/autocomplete.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <set>
9 #include <utility>
8 10
9 #include "base/basictypes.h" 11 #include "base/basictypes.h"
10 #include "base/command_line.h" 12 #include "base/command_line.h"
11 #include "base/i18n/number_formatting.h" 13 #include "base/i18n/number_formatting.h"
12 #include "base/metrics/histogram.h" 14 #include "base/metrics/histogram.h"
13 #include "base/string_number_conversions.h" 15 #include "base/string_number_conversions.h"
14 #include "base/string_util.h" 16 #include "base/string_util.h"
15 #include "base/utf_string_conversions.h" 17 #include "base/utf_string_conversions.h"
16 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" 18 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h"
17 #include "chrome/browser/autocomplete/autocomplete_match.h" 19 #include "chrome/browser/autocomplete/autocomplete_match.h"
18 #include "chrome/browser/autocomplete/builtin_provider.h" 20 #include "chrome/browser/autocomplete/builtin_provider.h"
19 #include "chrome/browser/autocomplete/extension_app_provider.h" 21 #include "chrome/browser/autocomplete/extension_app_provider.h"
20 #include "chrome/browser/autocomplete/history_contents_provider.h" 22 #include "chrome/browser/autocomplete/history_contents_provider.h"
21 #include "chrome/browser/autocomplete/history_quick_provider.h" 23 #include "chrome/browser/autocomplete/history_quick_provider.h"
22 #include "chrome/browser/autocomplete/history_url_provider.h" 24 #include "chrome/browser/autocomplete/history_url_provider.h"
23 #include "chrome/browser/autocomplete/keyword_provider.h" 25 #include "chrome/browser/autocomplete/keyword_provider.h"
24 #include "chrome/browser/autocomplete/search_provider.h" 26 #include "chrome/browser/autocomplete/search_provider.h"
25 #include "chrome/browser/bookmarks/bookmark_model.h" 27 #include "chrome/browser/bookmarks/bookmark_model.h"
28 #include "chrome/browser/extensions/extension_service.h"
26 #include "chrome/browser/external_protocol_handler.h" 29 #include "chrome/browser/external_protocol_handler.h"
27 #include "chrome/browser/net/url_fixer_upper.h" 30 #include "chrome/browser/net/url_fixer_upper.h"
28 #include "chrome/browser/prefs/pref_service.h" 31 #include "chrome/browser/prefs/pref_service.h"
29 #include "chrome/browser/profiles/profile.h" 32 #include "chrome/browser/profiles/profile.h"
33 #include "chrome/browser/search_engines/template_url.h"
34 #include "chrome/browser/search_engines/template_url_model.h"
30 #include "chrome/browser/ui/webui/history_ui.h" 35 #include "chrome/browser/ui/webui/history_ui.h"
31 #include "chrome/common/chrome_switches.h" 36 #include "chrome/common/chrome_switches.h"
32 #include "chrome/common/pref_names.h" 37 #include "chrome/common/pref_names.h"
33 #include "chrome/common/url_constants.h" 38 #include "chrome/common/url_constants.h"
34 #include "content/common/notification_service.h" 39 #include "content/common/notification_service.h"
35 #include "googleurl/src/gurl.h" 40 #include "googleurl/src/gurl.h"
36 #include "googleurl/src/url_canon_ip.h" 41 #include "googleurl/src/url_canon_ip.h"
37 #include "googleurl/src/url_util.h" 42 #include "googleurl/src/url_util.h"
38 #include "grit/generated_resources.h" 43 #include "grit/generated_resources.h"
39 #include "grit/theme_resources.h" 44 #include "grit/theme_resources.h"
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 std::upper_bound(begin(), end(), match, &AutocompleteMatch::MoreRelevant); 640 std::upper_bound(begin(), end(), match, &AutocompleteMatch::MoreRelevant);
636 ACMatches::iterator::difference_type default_offset = 641 ACMatches::iterator::difference_type default_offset =
637 default_match_ - begin(); 642 default_match_ - begin();
638 if ((insertion_point - begin()) <= default_offset) 643 if ((insertion_point - begin()) <= default_offset)
639 ++default_offset; 644 ++default_offset;
640 matches_.insert(insertion_point, match); 645 matches_.insert(insertion_point, match);
641 default_match_ = begin() + default_offset; 646 default_match_ = begin() + default_offset;
642 } 647 }
643 648
644 void AutocompleteResult::SortAndCull(const AutocompleteInput& input) { 649 void AutocompleteResult::SortAndCull(const AutocompleteInput& input) {
650 for (ACMatches::iterator i = matches_.begin(); i != matches_.end(); ++i)
651 i->ComputeStrippedDestinationURL();
652
645 // Remove duplicates. 653 // Remove duplicates.
646 std::sort(matches_.begin(), matches_.end(), 654 std::sort(matches_.begin(), matches_.end(),
647 &AutocompleteMatch::DestinationSortFunc); 655 &AutocompleteMatch::DestinationSortFunc);
648 matches_.erase(std::unique(matches_.begin(), matches_.end(), 656 matches_.erase(std::unique(matches_.begin(), matches_.end(),
649 &AutocompleteMatch::DestinationsEqual), 657 &AutocompleteMatch::DestinationsEqual),
650 matches_.end()); 658 matches_.end());
651 659
652 // Sort and trim to the most relevant kMaxMatches matches. 660 // Sort and trim to the most relevant kMaxMatches matches.
653 const size_t num_matches = std::min(kMaxMatches, matches_.size()); 661 const size_t num_matches = std::min(kMaxMatches, matches_.size());
654 std::partial_sort(matches_.begin(), matches_.begin() + num_matches, 662 std::partial_sort(matches_.begin(), matches_.begin() + num_matches,
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 // any copied entries. We do this from the time the user stopped typing as some 786 // any copied entries. We do this from the time the user stopped typing as some
779 // providers (such as SearchProvider) wait for the user to stop typing before 787 // providers (such as SearchProvider) wait for the user to stop typing before
780 // they initiate a query. 788 // they initiate a query.
781 static const int kExpireTimeMS = 500; 789 static const int kExpireTimeMS = 500;
782 790
783 AutocompleteController::AutocompleteController( 791 AutocompleteController::AutocompleteController(
784 Profile* profile, 792 Profile* profile,
785 AutocompleteControllerDelegate* delegate) 793 AutocompleteControllerDelegate* delegate)
786 : delegate_(delegate), 794 : delegate_(delegate),
787 done_(true), 795 done_(true),
788 in_start_(false) { 796 in_start_(false),
797 profile_(profile) {
789 search_provider_ = new SearchProvider(this, profile); 798 search_provider_ = new SearchProvider(this, profile);
790 providers_.push_back(search_provider_); 799 providers_.push_back(search_provider_);
791 if (!CommandLine::ForCurrentProcess()->HasSwitch( 800 if (!CommandLine::ForCurrentProcess()->HasSwitch(
792 switches::kDisableHistoryQuickProvider)) 801 switches::kDisableHistoryQuickProvider))
793 providers_.push_back(new HistoryQuickProvider(this, profile)); 802 providers_.push_back(new HistoryQuickProvider(this, profile));
794 if (!CommandLine::ForCurrentProcess()->HasSwitch( 803 if (!CommandLine::ForCurrentProcess()->HasSwitch(
795 switches::kDisableHistoryURLProvider)) 804 switches::kDisableHistoryURLProvider))
796 providers_.push_back(new HistoryURLProvider(this, profile)); 805 providers_.push_back(new HistoryURLProvider(this, profile));
797 providers_.push_back(new KeywordProvider(this, profile)); 806 providers_.push_back(new KeywordProvider(this, profile));
798 providers_.push_back(new HistoryContentsProvider(this, profile)); 807 providers_.push_back(new HistoryContentsProvider(this, profile));
(...skipping 14 matching lines...) Expand all
813 Stop(false); 822 Stop(false);
814 823
815 for (ACProviders::iterator i(providers_.begin()); i != providers_.end(); ++i) 824 for (ACProviders::iterator i(providers_.begin()); i != providers_.end(); ++i)
816 (*i)->Release(); 825 (*i)->Release();
817 826
818 providers_.clear(); // Not really necessary. 827 providers_.clear(); // Not really necessary.
819 } 828 }
820 829
821 void AutocompleteController::SetProfile(Profile* profile) { 830 void AutocompleteController::SetProfile(Profile* profile) {
822 Stop(true); 831 Stop(true);
832 profile_ = profile;
823 for (ACProviders::iterator i(providers_.begin()); i != providers_.end(); ++i) 833 for (ACProviders::iterator i(providers_.begin()); i != providers_.end(); ++i)
824 (*i)->SetProfile(profile); 834 (*i)->SetProfile(profile);
825 input_.Clear(); // Ensure we don't try to do a "minimal_changes" query on a 835 input_.Clear(); // Ensure we don't try to do a "minimal_changes" query on a
826 // different profile. 836 // different profile.
827 } 837 }
828 838
829 void AutocompleteController::Start( 839 void AutocompleteController::Start(
830 const string16& text, 840 const string16& text,
831 const string16& desired_tld, 841 const string16& desired_tld,
832 bool prevent_inline_autocomplete, 842 bool prevent_inline_autocomplete,
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 AutocompleteResult last_result; 935 AutocompleteResult last_result;
926 last_result.Swap(&result_); 936 last_result.Swap(&result_);
927 937
928 for (ACProviders::const_iterator i(providers_.begin()); i != providers_.end(); 938 for (ACProviders::const_iterator i(providers_.begin()); i != providers_.end();
929 ++i) 939 ++i)
930 result_.AppendMatches((*i)->matches()); 940 result_.AppendMatches((*i)->matches());
931 941
932 // Sort the matches and trim to a small number of "best" matches. 942 // Sort the matches and trim to a small number of "best" matches.
933 result_.SortAndCull(input_); 943 result_.SortAndCull(input_);
934 944
945 std::set<string16> keywords;
946 for (ACMatches::iterator match(result_.begin()); match != result_.end();
947 ++match) {
948 if (match->keyword_state == AutocompleteMatch::KEYWORD) {
949 keywords.insert(match->keyword);
950 } else {
951 string16 keyword = GetKeywordForText(match->fill_into_edit);
952
953 // Only add the keyword if the match does not have a duplicate keyword
954 // with a more relevant match.
955 if (!keyword.empty() && !keywords.count(keyword)) {
956 match->keyword.assign(keyword);
957 match->keyword_state = AutocompleteMatch::DUAL_SHOWING_NON_KEYWORD;
958 match->keyword_url = profile_->GetTemplateURLModel()->
959 GetTemplateURLForKeyword(keyword);
960 keywords.insert(keyword);
961 }
962 }
963 }
964
935 // Need to validate before invoking CopyOldMatches as the old matches are not 965 // Need to validate before invoking CopyOldMatches as the old matches are not
936 // valid against the current input. 966 // valid against the current input.
937 #ifndef NDEBUG 967 #ifndef NDEBUG
938 result_.Validate(); 968 result_.Validate();
939 #endif 969 #endif
940 970
941 if (!done_) { 971 if (!done_) {
942 // This conditional needs to match the conditional in Start that invokes 972 // This conditional needs to match the conditional in Start that invokes
943 // StartExpireTimer. 973 // StartExpireTimer.
944 result_.CopyOldMatches(input_, last_result); 974 result_.CopyOldMatches(input_, last_result);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 } 1013 }
984 } 1014 }
985 done_ = true; 1015 done_ = true;
986 } 1016 }
987 1017
988 void AutocompleteController::StartExpireTimer() { 1018 void AutocompleteController::StartExpireTimer() {
989 if (result_.HasCopiedMatches()) 1019 if (result_.HasCopiedMatches())
990 expire_timer_.Start(base::TimeDelta::FromMilliseconds(kExpireTimeMS), 1020 expire_timer_.Start(base::TimeDelta::FromMilliseconds(kExpireTimeMS),
991 this, &AutocompleteController::ExpireCopiedEntries); 1021 this, &AutocompleteController::ExpireCopiedEntries);
992 } 1022 }
1023
1024 string16 AutocompleteController::GetKeywordForText(
1025 const string16& text) const {
1026 const string16 keyword(TemplateURLModel::CleanUserInputKeyword(text));
1027
1028 if (keyword.empty())
1029 return keyword;
1030 if (!profile_->GetTemplateURLModel())
1031 return string16();
1032 profile_->GetTemplateURLModel()->Load();
1033
1034 // Don't provide a hint if this keyword doesn't support replacement.
1035 const TemplateURL* const template_url =
1036 profile_->GetTemplateURLModel()->GetTemplateURLForKeyword(keyword);
1037 if (!TemplateURL::SupportsReplacement(template_url))
1038 return string16();
1039
1040 // Don't provide a hint for inactive/disabled extension keywords.
1041 if (template_url->IsExtensionKeyword()) {
1042 const Extension* extension = profile_->GetExtensionService()->
1043 GetExtensionById(template_url->GetExtensionId(), false);
1044 if (!extension ||
1045 (profile_->IsOffTheRecord() &&
1046 !profile_->GetExtensionService()->IsIncognitoEnabled(extension->id())))
1047 return string16();
1048 }
1049
1050 return keyword;
1051 }
1052
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698