Don't preload rarely seen large images
[chromium-blink-merge.git] / components / search_engines / template_url_service.cc
blob7ba2ff0ec3104f6bb050ce895de376d3e46f5383
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.
5 #include "components/search_engines/template_url_service.h"
7 #include <algorithm>
8 #include <utility>
10 #include "base/auto_reset.h"
11 #include "base/command_line.h"
12 #include "base/compiler_specific.h"
13 #include "base/guid.h"
14 #include "base/i18n/case_conversion.h"
15 #include "base/memory/scoped_vector.h"
16 #include "base/metrics/histogram_macros.h"
17 #include "base/prefs/pref_service.h"
18 #include "base/profiler/scoped_tracker.h"
19 #include "base/stl_util.h"
20 #include "base/strings/string_split.h"
21 #include "base/strings/string_util.h"
22 #include "base/strings/utf_string_conversions.h"
23 #include "base/time/default_clock.h"
24 #include "base/time/time.h"
25 #include "components/pref_registry/pref_registry_syncable.h"
26 #include "components/rappor/rappor_service.h"
27 #include "components/search_engines/search_engines_pref_names.h"
28 #include "components/search_engines/search_host_to_urls_map.h"
29 #include "components/search_engines/search_terms_data.h"
30 #include "components/search_engines/template_url.h"
31 #include "components/search_engines/template_url_prepopulate_data.h"
32 #include "components/search_engines/template_url_service_client.h"
33 #include "components/search_engines/template_url_service_observer.h"
34 #include "components/search_engines/util.h"
35 #include "components/url_fixer/url_fixer.h"
36 #include "net/base/net_util.h"
37 #include "net/base/registry_controlled_domains/registry_controlled_domain.h"
38 #include "sync/api/sync_change.h"
39 #include "sync/api/sync_error_factory.h"
40 #include "sync/protocol/search_engine_specifics.pb.h"
41 #include "sync/protocol/sync.pb.h"
42 #include "url/gurl.h"
44 typedef SearchHostToURLsMap::TemplateURLSet TemplateURLSet;
45 typedef TemplateURLService::SyncDataMap SyncDataMap;
47 namespace {
49 bool IdenticalSyncGUIDs(const TemplateURLData* data, const TemplateURL* turl) {
50 if (!data || !turl)
51 return !data && !turl;
53 return data->sync_guid == turl->sync_guid();
56 const char kDeleteSyncedEngineHistogramName[] =
57 "Search.DeleteSyncedSearchEngine";
59 // Values for an enumerated histogram used to track whenever an ACTION_DELETE is
60 // sent to the server for search engines.
61 enum DeleteSyncedSearchEngineEvent {
62 DELETE_ENGINE_USER_ACTION,
63 DELETE_ENGINE_PRE_SYNC,
64 DELETE_ENGINE_EMPTY_FIELD,
65 DELETE_ENGINE_MAX,
68 // Returns true iff the change in |change_list| at index |i| should not be sent
69 // up to the server based on its GUIDs presence in |sync_data| or when compared
70 // to changes after it in |change_list|.
71 // The criteria is:
72 // 1) It is an ACTION_UPDATE or ACTION_DELETE and the sync_guid associated
73 // with it is NOT found in |sync_data|. We can only update and remove
74 // entries that were originally from the Sync server.
75 // 2) It is an ACTION_ADD and the sync_guid associated with it is found in
76 // |sync_data|. We cannot re-add entries that Sync already knew about.
77 // 3) There is an update after an update for the same GUID. We prune earlier
78 // ones just to save bandwidth (Sync would normally coalesce them).
79 bool ShouldRemoveSyncChange(size_t index,
80 syncer::SyncChangeList* change_list,
81 const SyncDataMap* sync_data) {
82 DCHECK(index < change_list->size());
83 const syncer::SyncChange& change_i = (*change_list)[index];
84 const std::string guid = change_i.sync_data().GetSpecifics()
85 .search_engine().sync_guid();
86 syncer::SyncChange::SyncChangeType type = change_i.change_type();
87 if ((type == syncer::SyncChange::ACTION_UPDATE ||
88 type == syncer::SyncChange::ACTION_DELETE) &&
89 sync_data->find(guid) == sync_data->end())
90 return true;
91 if (type == syncer::SyncChange::ACTION_ADD &&
92 sync_data->find(guid) != sync_data->end())
93 return true;
94 if (type == syncer::SyncChange::ACTION_UPDATE) {
95 for (size_t j = index + 1; j < change_list->size(); j++) {
96 const syncer::SyncChange& change_j = (*change_list)[j];
97 if ((syncer::SyncChange::ACTION_UPDATE == change_j.change_type()) &&
98 (change_j.sync_data().GetSpecifics().search_engine().sync_guid() ==
99 guid))
100 return true;
103 return false;
106 // Remove SyncChanges that should not be sent to the server from |change_list|.
107 // This is done to eliminate incorrect SyncChanges added by the merge and
108 // conflict resolution logic when it is unsure of whether or not an entry is new
109 // from Sync or originally from the local model. This also removes changes that
110 // would be otherwise be coalesced by Sync in order to save bandwidth.
111 void PruneSyncChanges(const SyncDataMap* sync_data,
112 syncer::SyncChangeList* change_list) {
113 for (size_t i = 0; i < change_list->size(); ) {
114 if (ShouldRemoveSyncChange(i, change_list, sync_data))
115 change_list->erase(change_list->begin() + i);
116 else
117 ++i;
121 // Returns true if |turl|'s GUID is not found inside |sync_data|. This is to be
122 // used in MergeDataAndStartSyncing to differentiate between TemplateURLs from
123 // Sync and TemplateURLs that were initially local, assuming |sync_data| is the
124 // |initial_sync_data| parameter.
125 bool IsFromSync(const TemplateURL* turl, const SyncDataMap& sync_data) {
126 return !!sync_data.count(turl->sync_guid());
129 // Log the number of instances of a keyword that exist, with zero or more
130 // underscores, which could occur as the result of conflict resolution.
131 void LogDuplicatesHistogram(
132 const TemplateURLService::TemplateURLVector& template_urls) {
133 std::map<std::string, int> duplicates;
134 for (TemplateURLService::TemplateURLVector::const_iterator it =
135 template_urls.begin(); it != template_urls.end(); ++it) {
136 std::string keyword = base::UTF16ToASCII((*it)->keyword());
137 base::TrimString(keyword, "_", &keyword);
138 duplicates[keyword]++;
141 // Count the keywords with duplicates.
142 int num_dupes = 0;
143 for (std::map<std::string, int>::const_iterator it = duplicates.begin();
144 it != duplicates.end(); ++it) {
145 if (it->second > 1)
146 num_dupes++;
149 UMA_HISTOGRAM_COUNTS_100("Search.SearchEngineDuplicateCounts", num_dupes);
152 } // namespace
155 // TemplateURLService::LessWithPrefix -----------------------------------------
157 class TemplateURLService::LessWithPrefix {
158 public:
159 // We want to find the set of keywords that begin with a prefix. The STL
160 // algorithms will return the set of elements that are "equal to" the
161 // prefix, where "equal(x, y)" means "!(cmp(x, y) || cmp(y, x))". When
162 // cmp() is the typical std::less<>, this results in lexicographic equality;
163 // we need to extend this to mark a prefix as "not less than" a keyword it
164 // begins, which will cause the desired elements to be considered "equal to"
165 // the prefix. Note: this is still a strict weak ordering, as required by
166 // equal_range() (though I will not prove that here).
168 // Unfortunately the calling convention is not "prefix and element" but
169 // rather "two elements", so we pass the prefix as a fake "element" which has
170 // a NULL KeywordDataElement pointer.
171 bool operator()(const KeywordToTemplateMap::value_type& elem1,
172 const KeywordToTemplateMap::value_type& elem2) const {
173 return (elem1.second == NULL) ?
174 (elem2.first.compare(0, elem1.first.length(), elem1.first) > 0) :
175 (elem1.first < elem2.first);
180 // TemplateURLService ---------------------------------------------------------
182 TemplateURLService::TemplateURLService(
183 PrefService* prefs,
184 scoped_ptr<SearchTermsData> search_terms_data,
185 const scoped_refptr<KeywordWebDataService>& web_data_service,
186 scoped_ptr<TemplateURLServiceClient> client,
187 GoogleURLTracker* google_url_tracker,
188 rappor::RapporService* rappor_service,
189 const base::Closure& dsp_change_callback)
190 : prefs_(prefs),
191 search_terms_data_(search_terms_data.Pass()),
192 web_data_service_(web_data_service),
193 client_(client.Pass()),
194 google_url_tracker_(google_url_tracker),
195 rappor_service_(rappor_service),
196 dsp_change_callback_(dsp_change_callback),
197 provider_map_(new SearchHostToURLsMap),
198 loaded_(false),
199 load_failed_(false),
200 load_handle_(0),
201 default_search_provider_(NULL),
202 next_id_(kInvalidTemplateURLID + 1),
203 clock_(new base::DefaultClock),
204 models_associated_(false),
205 processing_syncer_changes_(false),
206 dsp_change_origin_(DSP_CHANGE_OTHER),
207 default_search_manager_(
208 prefs_,
209 base::Bind(&TemplateURLService::OnDefaultSearchChange,
210 base::Unretained(this))) {
211 DCHECK(search_terms_data_);
212 Init(NULL, 0);
215 TemplateURLService::TemplateURLService(const Initializer* initializers,
216 const int count)
217 : prefs_(NULL),
218 search_terms_data_(new SearchTermsData),
219 web_data_service_(NULL),
220 google_url_tracker_(NULL),
221 rappor_service_(NULL),
222 provider_map_(new SearchHostToURLsMap),
223 loaded_(false),
224 load_failed_(false),
225 load_handle_(0),
226 default_search_provider_(NULL),
227 next_id_(kInvalidTemplateURLID + 1),
228 clock_(new base::DefaultClock),
229 models_associated_(false),
230 processing_syncer_changes_(false),
231 dsp_change_origin_(DSP_CHANGE_OTHER),
232 default_search_manager_(
233 prefs_,
234 base::Bind(&TemplateURLService::OnDefaultSearchChange,
235 base::Unretained(this))) {
236 Init(initializers, count);
239 TemplateURLService::~TemplateURLService() {
240 // |web_data_service_| should be deleted during Shutdown().
241 DCHECK(!web_data_service_.get());
242 STLDeleteElements(&template_urls_);
245 // static
246 void TemplateURLService::RegisterProfilePrefs(
247 user_prefs::PrefRegistrySyncable* registry) {
248 registry->RegisterStringPref(prefs::kSyncedDefaultSearchProviderGUID,
249 std::string(),
250 user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
251 registry->RegisterBooleanPref(prefs::kDefaultSearchProviderEnabled, true);
252 registry->RegisterStringPref(prefs::kDefaultSearchProviderName,
253 std::string());
254 registry->RegisterStringPref(prefs::kDefaultSearchProviderID, std::string());
255 registry->RegisterStringPref(prefs::kDefaultSearchProviderPrepopulateID,
256 std::string());
257 registry->RegisterStringPref(prefs::kDefaultSearchProviderSuggestURL,
258 std::string());
259 registry->RegisterStringPref(prefs::kDefaultSearchProviderSearchURL,
260 std::string());
261 registry->RegisterStringPref(prefs::kDefaultSearchProviderInstantURL,
262 std::string());
263 registry->RegisterStringPref(prefs::kDefaultSearchProviderImageURL,
264 std::string());
265 registry->RegisterStringPref(prefs::kDefaultSearchProviderNewTabURL,
266 std::string());
267 registry->RegisterStringPref(prefs::kDefaultSearchProviderSearchURLPostParams,
268 std::string());
269 registry->RegisterStringPref(
270 prefs::kDefaultSearchProviderSuggestURLPostParams, std::string());
271 registry->RegisterStringPref(
272 prefs::kDefaultSearchProviderInstantURLPostParams, std::string());
273 registry->RegisterStringPref(prefs::kDefaultSearchProviderImageURLPostParams,
274 std::string());
275 registry->RegisterStringPref(prefs::kDefaultSearchProviderKeyword,
276 std::string());
277 registry->RegisterStringPref(prefs::kDefaultSearchProviderIconURL,
278 std::string());
279 registry->RegisterStringPref(prefs::kDefaultSearchProviderEncodings,
280 std::string());
281 registry->RegisterListPref(prefs::kDefaultSearchProviderAlternateURLs);
282 registry->RegisterStringPref(
283 prefs::kDefaultSearchProviderSearchTermsReplacementKey, std::string());
286 // static
287 base::string16 TemplateURLService::CleanUserInputKeyword(
288 const base::string16& keyword) {
289 // Remove the scheme.
290 base::string16 result(base::i18n::ToLower(keyword));
291 base::TrimWhitespace(result, base::TRIM_ALL, &result);
292 url::Component scheme_component;
293 if (url::ExtractScheme(base::UTF16ToUTF8(keyword).c_str(),
294 static_cast<int>(keyword.length()),
295 &scheme_component)) {
296 // If the scheme isn't "http" or "https", bail. The user isn't trying to
297 // type a web address, but rather an FTP, file:, or other scheme URL, or a
298 // search query with some sort of initial operator (e.g. "site:").
299 if (result.compare(0, scheme_component.end(),
300 base::ASCIIToUTF16(url::kHttpScheme)) &&
301 result.compare(0, scheme_component.end(),
302 base::ASCIIToUTF16(url::kHttpsScheme)))
303 return base::string16();
305 // Include trailing ':'.
306 result.erase(0, scheme_component.end() + 1);
307 // Many schemes usually have "//" after them, so strip it too.
308 const base::string16 after_scheme(base::ASCIIToUTF16("//"));
309 if (result.compare(0, after_scheme.length(), after_scheme) == 0)
310 result.erase(0, after_scheme.length());
313 // Remove leading "www.".
314 result = net::StripWWW(result);
316 // Remove trailing "/".
317 return (result.length() > 0 && result[result.length() - 1] == '/') ?
318 result.substr(0, result.length() - 1) : result;
321 bool TemplateURLService::CanAddAutogeneratedKeyword(
322 const base::string16& keyword,
323 const GURL& url,
324 TemplateURL** template_url_to_replace) {
325 DCHECK(!keyword.empty()); // This should only be called for non-empty
326 // keywords. If we need to support empty kewords
327 // the code needs to change slightly.
328 TemplateURL* existing_url = GetTemplateURLForKeyword(keyword);
329 if (template_url_to_replace)
330 *template_url_to_replace = existing_url;
331 if (existing_url) {
332 // We already have a TemplateURL for this keyword. Only allow it to be
333 // replaced if the TemplateURL can be replaced.
334 return CanReplace(existing_url);
337 // We don't have a TemplateURL with keyword. We still may not allow this
338 // keyword if there's evidence we may have created this keyword before and
339 // the user renamed it (because, for instance, the keyword is a common word
340 // that may interfere with search queries). An easy heuristic for this is
341 // whether the user has a TemplateURL that has been manually modified (e.g.,
342 // renamed) connected to the same host.
343 return !url.is_valid() || url.host().empty() ||
344 CanAddAutogeneratedKeywordForHost(url.host());
347 void TemplateURLService::FindMatchingKeywords(
348 const base::string16& prefix,
349 bool support_replacement_only,
350 TemplateURLVector* matches) {
351 // Sanity check args.
352 if (prefix.empty())
353 return;
354 DCHECK(matches != NULL);
355 DCHECK(matches->empty()); // The code for exact matches assumes this.
357 // Required for VS2010: http://connect.microsoft.com/VisualStudio/feedback/details/520043/error-converting-from-null-to-a-pointer-type-in-std-pair
358 TemplateURL* const kNullTemplateURL = NULL;
360 // Find matching keyword range. Searches the element map for keywords
361 // beginning with |prefix| and stores the endpoints of the resulting set in
362 // |match_range|.
363 const std::pair<KeywordToTemplateMap::const_iterator,
364 KeywordToTemplateMap::const_iterator> match_range(
365 std::equal_range(
366 keyword_to_template_map_.begin(), keyword_to_template_map_.end(),
367 KeywordToTemplateMap::value_type(prefix, kNullTemplateURL),
368 LessWithPrefix()));
370 // Return vector of matching keywords.
371 for (KeywordToTemplateMap::const_iterator i(match_range.first);
372 i != match_range.second; ++i) {
373 if (!support_replacement_only ||
374 i->second->url_ref().SupportsReplacement(search_terms_data()))
375 matches->push_back(i->second);
379 TemplateURL* TemplateURLService::GetTemplateURLForKeyword(
380 const base::string16& keyword) {
381 KeywordToTemplateMap::const_iterator elem(
382 keyword_to_template_map_.find(keyword));
383 if (elem != keyword_to_template_map_.end())
384 return elem->second;
385 return (!loaded_ &&
386 initial_default_search_provider_.get() &&
387 (initial_default_search_provider_->keyword() == keyword)) ?
388 initial_default_search_provider_.get() : NULL;
391 TemplateURL* TemplateURLService::GetTemplateURLForGUID(
392 const std::string& sync_guid) {
393 GUIDToTemplateMap::const_iterator elem(guid_to_template_map_.find(sync_guid));
394 if (elem != guid_to_template_map_.end())
395 return elem->second;
396 return (!loaded_ &&
397 initial_default_search_provider_.get() &&
398 (initial_default_search_provider_->sync_guid() == sync_guid)) ?
399 initial_default_search_provider_.get() : NULL;
402 TemplateURL* TemplateURLService::GetTemplateURLForHost(
403 const std::string& host) {
404 if (loaded_)
405 return provider_map_->GetTemplateURLForHost(host);
406 TemplateURL* initial_dsp = initial_default_search_provider_.get();
407 if (!initial_dsp)
408 return NULL;
409 return (initial_dsp->GenerateSearchURL(search_terms_data()).host() == host) ?
410 initial_dsp : NULL;
413 bool TemplateURLService::Add(TemplateURL* template_url) {
414 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
415 if (!AddNoNotify(template_url, true))
416 return false;
417 NotifyObservers();
418 return true;
421 void TemplateURLService::AddWithOverrides(TemplateURL* template_url,
422 const base::string16& short_name,
423 const base::string16& keyword,
424 const std::string& url) {
425 DCHECK(!short_name.empty());
426 DCHECK(!keyword.empty());
427 DCHECK(!url.empty());
428 template_url->data_.SetShortName(short_name);
429 template_url->data_.SetKeyword(keyword);
430 template_url->SetURL(url);
431 Add(template_url);
434 void TemplateURLService::AddExtensionControlledTURL(
435 TemplateURL* template_url,
436 scoped_ptr<TemplateURL::AssociatedExtensionInfo> info) {
437 DCHECK(loaded_);
438 DCHECK(template_url);
439 DCHECK_EQ(kInvalidTemplateURLID, template_url->id());
440 DCHECK(info);
441 DCHECK_NE(TemplateURL::NORMAL, info->type);
442 DCHECK_EQ(info->wants_to_be_default_engine,
443 template_url->show_in_default_list());
444 DCHECK(!FindTemplateURLForExtension(info->extension_id, info->type));
445 template_url->extension_info_.swap(info);
447 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
448 if (AddNoNotify(template_url, true)) {
449 if (template_url->extension_info_->wants_to_be_default_engine)
450 UpdateExtensionDefaultSearchEngine();
451 NotifyObservers();
455 void TemplateURLService::Remove(TemplateURL* template_url) {
456 RemoveNoNotify(template_url);
457 NotifyObservers();
460 void TemplateURLService::RemoveExtensionControlledTURL(
461 const std::string& extension_id,
462 TemplateURL::Type type) {
463 DCHECK(loaded_);
464 TemplateURL* url = FindTemplateURLForExtension(extension_id, type);
465 if (!url)
466 return;
467 // NULL this out so that we can call RemoveNoNotify.
468 // UpdateExtensionDefaultSearchEngine will cause it to be reset.
469 if (default_search_provider_ == url)
470 default_search_provider_ = NULL;
471 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
472 RemoveNoNotify(url);
473 UpdateExtensionDefaultSearchEngine();
474 NotifyObservers();
477 void TemplateURLService::RemoveAutoGeneratedSince(base::Time created_after) {
478 RemoveAutoGeneratedBetween(created_after, base::Time());
481 void TemplateURLService::RemoveAutoGeneratedBetween(base::Time created_after,
482 base::Time created_before) {
483 RemoveAutoGeneratedForOriginBetween(GURL(), created_after, created_before);
486 void TemplateURLService::RemoveAutoGeneratedForOriginBetween(
487 const GURL& origin,
488 base::Time created_after,
489 base::Time created_before) {
490 GURL o(origin.GetOrigin());
491 bool should_notify = false;
492 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
493 for (size_t i = 0; i < template_urls_.size();) {
494 if (template_urls_[i]->date_created() >= created_after &&
495 (created_before.is_null() ||
496 template_urls_[i]->date_created() < created_before) &&
497 CanReplace(template_urls_[i]) &&
498 (o.is_empty() ||
499 template_urls_[i]->GenerateSearchURL(
500 search_terms_data()).GetOrigin() == o)) {
501 RemoveNoNotify(template_urls_[i]);
502 should_notify = true;
503 } else {
504 ++i;
507 if (should_notify)
508 NotifyObservers();
511 void TemplateURLService::RegisterOmniboxKeyword(
512 const std::string& extension_id,
513 const std::string& extension_name,
514 const std::string& keyword,
515 const std::string& template_url_string) {
516 DCHECK(loaded_);
518 if (FindTemplateURLForExtension(extension_id,
519 TemplateURL::OMNIBOX_API_EXTENSION))
520 return;
522 TemplateURLData data;
523 data.SetShortName(base::UTF8ToUTF16(extension_name));
524 data.SetKeyword(base::UTF8ToUTF16(keyword));
525 data.SetURL(template_url_string);
526 TemplateURL* url = new TemplateURL(data);
527 scoped_ptr<TemplateURL::AssociatedExtensionInfo> info(
528 new TemplateURL::AssociatedExtensionInfo(
529 TemplateURL::OMNIBOX_API_EXTENSION, extension_id));
530 AddExtensionControlledTURL(url, info.Pass());
533 TemplateURLService::TemplateURLVector TemplateURLService::GetTemplateURLs() {
534 return template_urls_;
537 void TemplateURLService::IncrementUsageCount(TemplateURL* url) {
538 DCHECK(url);
539 // Extension-controlled search engines are not persisted.
540 if (url->GetType() != TemplateURL::NORMAL)
541 return;
542 if (std::find(template_urls_.begin(), template_urls_.end(), url) ==
543 template_urls_.end())
544 return;
545 ++url->data_.usage_count;
547 if (web_data_service_.get())
548 web_data_service_->UpdateKeyword(url->data());
551 void TemplateURLService::ResetTemplateURL(TemplateURL* url,
552 const base::string16& title,
553 const base::string16& keyword,
554 const std::string& search_url) {
555 if (ResetTemplateURLNoNotify(url, title, keyword, search_url))
556 NotifyObservers();
559 bool TemplateURLService::CanMakeDefault(const TemplateURL* url) {
560 return
561 ((default_search_provider_source_ == DefaultSearchManager::FROM_USER) ||
562 (default_search_provider_source_ ==
563 DefaultSearchManager::FROM_FALLBACK)) &&
564 (url != GetDefaultSearchProvider()) &&
565 url->url_ref().SupportsReplacement(search_terms_data()) &&
566 (url->GetType() == TemplateURL::NORMAL);
569 void TemplateURLService::SetUserSelectedDefaultSearchProvider(
570 TemplateURL* url) {
571 // Omnibox keywords cannot be made default. Extension-controlled search
572 // engines can be made default only by the extension itself because they
573 // aren't persisted.
574 DCHECK(!url || (url->GetType() == TemplateURL::NORMAL));
575 if (load_failed_) {
576 // Skip the DefaultSearchManager, which will persist to user preferences.
577 if ((default_search_provider_source_ == DefaultSearchManager::FROM_USER) ||
578 (default_search_provider_source_ ==
579 DefaultSearchManager::FROM_FALLBACK)) {
580 ApplyDefaultSearchChange(url ? &url->data() : NULL,
581 DefaultSearchManager::FROM_USER);
583 } else {
584 // We rely on the DefaultSearchManager to call OnDefaultSearchChange if, in
585 // fact, the effective DSE changes.
586 if (url)
587 default_search_manager_.SetUserSelectedDefaultSearchEngine(url->data());
588 else
589 default_search_manager_.ClearUserSelectedDefaultSearchEngine();
593 TemplateURL* TemplateURLService::GetDefaultSearchProvider() {
594 return const_cast<TemplateURL*>(
595 static_cast<const TemplateURLService*>(this)->GetDefaultSearchProvider());
598 const TemplateURL* TemplateURLService::GetDefaultSearchProvider() const {
599 return loaded_ ? default_search_provider_
600 : initial_default_search_provider_.get();
603 bool TemplateURLService::IsSearchResultsPageFromDefaultSearchProvider(
604 const GURL& url) const {
605 const TemplateURL* default_provider = GetDefaultSearchProvider();
606 return default_provider &&
607 default_provider->IsSearchURL(url, search_terms_data());
610 bool TemplateURLService::IsExtensionControlledDefaultSearch() {
611 return default_search_provider_source_ ==
612 DefaultSearchManager::FROM_EXTENSION;
615 void TemplateURLService::RepairPrepopulatedSearchEngines() {
616 // Can't clean DB if it hasn't been loaded.
617 DCHECK(loaded());
619 if ((default_search_provider_source_ == DefaultSearchManager::FROM_USER) ||
620 (default_search_provider_source_ ==
621 DefaultSearchManager::FROM_FALLBACK)) {
622 // Clear |default_search_provider_| in case we want to remove the engine it
623 // points to. This will get reset at the end of the function anyway.
624 default_search_provider_ = NULL;
627 size_t default_search_provider_index = 0;
628 ScopedVector<TemplateURLData> prepopulated_urls =
629 TemplateURLPrepopulateData::GetPrepopulatedEngines(
630 prefs_, &default_search_provider_index);
631 DCHECK(!prepopulated_urls.empty());
632 ActionsFromPrepopulateData actions(CreateActionsFromCurrentPrepopulateData(
633 &prepopulated_urls, template_urls_, default_search_provider_));
635 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
637 // Remove items.
638 for (std::vector<TemplateURL*>::iterator i = actions.removed_engines.begin();
639 i < actions.removed_engines.end(); ++i)
640 RemoveNoNotify(*i);
642 // Edit items.
643 for (EditedEngines::iterator i(actions.edited_engines.begin());
644 i < actions.edited_engines.end(); ++i) {
645 TemplateURL new_values(i->second);
646 UpdateNoNotify(i->first, new_values);
649 // Add items.
650 for (std::vector<TemplateURLData>::const_iterator i =
651 actions.added_engines.begin();
652 i < actions.added_engines.end();
653 ++i) {
654 AddNoNotify(new TemplateURL(*i), true);
657 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
658 &dsp_change_origin_, DSP_CHANGE_PROFILE_RESET);
660 default_search_manager_.ClearUserSelectedDefaultSearchEngine();
662 if (!default_search_provider_) {
663 // If the default search provider came from a user pref we would have been
664 // notified of the new (fallback-provided) value in
665 // ClearUserSelectedDefaultSearchEngine() above. Since we are here, the
666 // value was presumably originally a fallback value (which may have been
667 // repaired).
668 DefaultSearchManager::Source source;
669 const TemplateURLData* new_dse =
670 default_search_manager_.GetDefaultSearchEngine(&source);
671 // ApplyDefaultSearchChange will notify observers once it is done.
672 ApplyDefaultSearchChange(new_dse, source);
673 } else {
674 NotifyObservers();
678 void TemplateURLService::AddObserver(TemplateURLServiceObserver* observer) {
679 model_observers_.AddObserver(observer);
682 void TemplateURLService::RemoveObserver(TemplateURLServiceObserver* observer) {
683 model_observers_.RemoveObserver(observer);
686 void TemplateURLService::Load() {
687 if (loaded_ || load_handle_)
688 return;
690 if (web_data_service_.get())
691 load_handle_ = web_data_service_->GetKeywords(this);
692 else
693 ChangeToLoadedState();
696 scoped_ptr<TemplateURLService::Subscription>
697 TemplateURLService::RegisterOnLoadedCallback(
698 const base::Closure& callback) {
699 return loaded_ ?
700 scoped_ptr<TemplateURLService::Subscription>() :
701 on_loaded_callbacks_.Add(callback);
704 void TemplateURLService::OnWebDataServiceRequestDone(
705 KeywordWebDataService::Handle h,
706 const WDTypedResult* result) {
707 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460 is
708 // fixed.
709 tracked_objects::ScopedTracker tracking_profile(
710 FROM_HERE_WITH_EXPLICIT_FUNCTION(
711 "422460 TemplateURLService::OnWebDataServiceRequestDone"));
713 // Reset the load_handle so that we don't try and cancel the load in
714 // the destructor.
715 load_handle_ = 0;
717 if (!result) {
718 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460
719 // is fixed.
720 tracked_objects::ScopedTracker tracking_profile1(
721 FROM_HERE_WITH_EXPLICIT_FUNCTION(
722 "422460 TemplateURLService::OnWebDataServiceRequestDone 1"));
724 // Results are null if the database went away or (most likely) wasn't
725 // loaded.
726 load_failed_ = true;
727 web_data_service_ = NULL;
728 ChangeToLoadedState();
729 return;
732 TemplateURLVector template_urls;
733 int new_resource_keyword_version = 0;
735 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460
736 // is fixed.
737 tracked_objects::ScopedTracker tracking_profile2(
738 FROM_HERE_WITH_EXPLICIT_FUNCTION(
739 "422460 TemplateURLService::OnWebDataServiceRequestDone 2"));
741 GetSearchProvidersUsingKeywordResult(
742 *result, web_data_service_.get(), prefs_, &template_urls,
743 (default_search_provider_source_ == DefaultSearchManager::FROM_USER)
744 ? initial_default_search_provider_.get()
745 : NULL,
746 search_terms_data(), &new_resource_keyword_version, &pre_sync_deletes_);
749 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
752 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460
753 // is fixed.
754 tracked_objects::ScopedTracker tracking_profile4(
755 FROM_HERE_WITH_EXPLICIT_FUNCTION(
756 "422460 TemplateURLService::OnWebDataServiceRequestDone 4"));
758 PatchMissingSyncGUIDs(&template_urls);
760 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460
761 // is fixed.
762 tracked_objects::ScopedTracker tracking_profile41(
763 FROM_HERE_WITH_EXPLICIT_FUNCTION(
764 "422460 TemplateURLService::OnWebDataServiceRequestDone 41"));
766 SetTemplateURLs(&template_urls);
768 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460
769 // is fixed.
770 tracked_objects::ScopedTracker tracking_profile42(
771 FROM_HERE_WITH_EXPLICIT_FUNCTION(
772 "422460 TemplateURLService::OnWebDataServiceRequestDone 42"));
774 // This initializes provider_map_ which should be done before
775 // calling UpdateKeywordSearchTermsForURL.
776 // This also calls NotifyObservers.
777 ChangeToLoadedState();
779 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460
780 // is fixed.
781 tracked_objects::ScopedTracker tracking_profile43(
782 FROM_HERE_WITH_EXPLICIT_FUNCTION(
783 "422460 TemplateURLService::OnWebDataServiceRequestDone 43"));
785 // Index any visits that occurred before we finished loading.
786 for (size_t i = 0; i < visits_to_add_.size(); ++i)
787 UpdateKeywordSearchTermsForURL(visits_to_add_[i]);
788 visits_to_add_.clear();
790 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460
791 // is fixed.
792 tracked_objects::ScopedTracker tracking_profile44(
793 FROM_HERE_WITH_EXPLICIT_FUNCTION(
794 "422460 TemplateURLService::OnWebDataServiceRequestDone 44"));
796 if (new_resource_keyword_version)
797 web_data_service_->SetBuiltinKeywordVersion(new_resource_keyword_version);
800 if (default_search_provider_) {
801 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460
802 // is fixed.
803 tracked_objects::ScopedTracker tracking_profile5(
804 FROM_HERE_WITH_EXPLICIT_FUNCTION(
805 "422460 TemplateURLService::OnWebDataServiceRequestDone 5"));
807 UMA_HISTOGRAM_ENUMERATION(
808 "Search.DefaultSearchProviderType",
809 TemplateURLPrepopulateData::GetEngineType(
810 *default_search_provider_, search_terms_data()),
811 SEARCH_ENGINE_MAX);
813 if (rappor_service_) {
814 rappor_service_->RecordSample(
815 "Search.DefaultSearchProvider",
816 rappor::ETLD_PLUS_ONE_RAPPOR_TYPE,
817 net::registry_controlled_domains::GetDomainAndRegistry(
818 default_search_provider_->url_ref().GetHost(search_terms_data()),
819 net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES));
824 base::string16 TemplateURLService::GetKeywordShortName(
825 const base::string16& keyword,
826 bool* is_omnibox_api_extension_keyword) {
827 const TemplateURL* template_url = GetTemplateURLForKeyword(keyword);
829 // TODO(sky): Once LocationBarView adds a listener to the TemplateURLService
830 // to track changes to the model, this should become a DCHECK.
831 if (template_url) {
832 *is_omnibox_api_extension_keyword =
833 template_url->GetType() == TemplateURL::OMNIBOX_API_EXTENSION;
834 return template_url->AdjustedShortNameForLocaleDirection();
836 *is_omnibox_api_extension_keyword = false;
837 return base::string16();
840 void TemplateURLService::OnHistoryURLVisited(const URLVisitedDetails& details) {
841 if (!loaded_)
842 visits_to_add_.push_back(details);
843 else
844 UpdateKeywordSearchTermsForURL(details);
847 void TemplateURLService::Shutdown() {
848 if (client_)
849 client_->Shutdown();
850 // This check has to be done at Shutdown() instead of in the dtor to ensure
851 // that no clients of KeywordWebDataService are holding ptrs to it after the
852 // first phase of the KeyedService Shutdown() process.
853 if (load_handle_) {
854 DCHECK(web_data_service_.get());
855 web_data_service_->CancelRequest(load_handle_);
857 web_data_service_ = NULL;
860 syncer::SyncDataList TemplateURLService::GetAllSyncData(
861 syncer::ModelType type) const {
862 DCHECK_EQ(syncer::SEARCH_ENGINES, type);
864 syncer::SyncDataList current_data;
865 for (TemplateURLVector::const_iterator iter = template_urls_.begin();
866 iter != template_urls_.end(); ++iter) {
867 // We don't sync keywords managed by policy.
868 if ((*iter)->created_by_policy())
869 continue;
870 // We don't sync extension-controlled search engines.
871 if ((*iter)->GetType() != TemplateURL::NORMAL)
872 continue;
873 current_data.push_back(CreateSyncDataFromTemplateURL(**iter));
876 return current_data;
879 syncer::SyncError TemplateURLService::ProcessSyncChanges(
880 const tracked_objects::Location& from_here,
881 const syncer::SyncChangeList& change_list) {
882 if (!models_associated_) {
883 syncer::SyncError error(FROM_HERE,
884 syncer::SyncError::DATATYPE_ERROR,
885 "Models not yet associated.",
886 syncer::SEARCH_ENGINES);
887 return error;
889 DCHECK(loaded_);
891 base::AutoReset<bool> processing_changes(&processing_syncer_changes_, true);
893 // We've started syncing, so set our origin member to the base Sync value.
894 // As we move through Sync Code, we may set this to increasingly specific
895 // origins so we can tell what exactly caused a DSP change.
896 base::AutoReset<DefaultSearchChangeOrigin> change_origin(&dsp_change_origin_,
897 DSP_CHANGE_SYNC_UNINTENTIONAL);
899 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
901 syncer::SyncChangeList new_changes;
902 syncer::SyncError error;
903 for (syncer::SyncChangeList::const_iterator iter = change_list.begin();
904 iter != change_list.end(); ++iter) {
905 DCHECK_EQ(syncer::SEARCH_ENGINES, iter->sync_data().GetDataType());
907 std::string guid =
908 iter->sync_data().GetSpecifics().search_engine().sync_guid();
909 TemplateURL* existing_turl = GetTemplateURLForGUID(guid);
910 scoped_ptr<TemplateURL> turl(CreateTemplateURLFromTemplateURLAndSyncData(
911 client_.get(), prefs_, search_terms_data(), existing_turl,
912 iter->sync_data(), &new_changes));
913 if (!turl.get())
914 continue;
916 // Explicitly don't check for conflicts against extension keywords; in this
917 // case the functions which modify the keyword map know how to handle the
918 // conflicts.
919 // TODO(mpcomplete): If we allow editing extension keywords, then those will
920 // need to undergo conflict resolution.
921 TemplateURL* existing_keyword_turl =
922 FindNonExtensionTemplateURLForKeyword(turl->keyword());
923 if (iter->change_type() == syncer::SyncChange::ACTION_DELETE) {
924 if (!existing_turl) {
925 error = sync_error_factory_->CreateAndUploadError(
926 FROM_HERE,
927 "ProcessSyncChanges failed on ChangeType ACTION_DELETE");
928 continue;
930 if (existing_turl == GetDefaultSearchProvider()) {
931 // The only way Sync can attempt to delete the default search provider
932 // is if we had changed the kSyncedDefaultSearchProviderGUID
933 // preference, but perhaps it has not yet been received. To avoid
934 // situations where this has come in erroneously, we will un-delete
935 // the current default search from the Sync data. If the pref really
936 // does arrive later, then default search will change to the correct
937 // entry, but we'll have this extra entry sitting around. The result is
938 // not ideal, but it prevents a far more severe bug where the default is
939 // unexpectedly swapped to something else. The user can safely delete
940 // the extra entry again later, if they choose. Most users who do not
941 // look at the search engines UI will not notice this.
942 // Note that we append a special character to the end of the keyword in
943 // an attempt to avoid a ping-poinging situation where receiving clients
944 // may try to continually delete the resurrected entry.
945 base::string16 updated_keyword = UniquifyKeyword(*existing_turl, true);
946 TemplateURLData data(existing_turl->data());
947 data.SetKeyword(updated_keyword);
948 TemplateURL new_turl(data);
949 if (UpdateNoNotify(existing_turl, new_turl))
950 NotifyObservers();
952 syncer::SyncData sync_data = CreateSyncDataFromTemplateURL(new_turl);
953 new_changes.push_back(syncer::SyncChange(FROM_HERE,
954 syncer::SyncChange::ACTION_ADD,
955 sync_data));
956 // Ignore the delete attempt. This means we never end up resetting the
957 // default search provider due to an ACTION_DELETE from sync.
958 continue;
961 Remove(existing_turl);
962 } else if (iter->change_type() == syncer::SyncChange::ACTION_ADD) {
963 if (existing_turl) {
964 error = sync_error_factory_->CreateAndUploadError(
965 FROM_HERE,
966 "ProcessSyncChanges failed on ChangeType ACTION_ADD");
967 continue;
969 const std::string guid = turl->sync_guid();
970 if (existing_keyword_turl) {
971 // Resolve any conflicts so we can safely add the new entry.
972 ResolveSyncKeywordConflict(turl.get(), existing_keyword_turl,
973 &new_changes);
975 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
976 &dsp_change_origin_, DSP_CHANGE_SYNC_ADD);
977 // Force the local ID to kInvalidTemplateURLID so we can add it.
978 TemplateURLData data(turl->data());
979 data.id = kInvalidTemplateURLID;
980 TemplateURL* added = new TemplateURL(data);
981 if (Add(added))
982 MaybeUpdateDSEAfterSync(added);
983 } else if (iter->change_type() == syncer::SyncChange::ACTION_UPDATE) {
984 if (!existing_turl) {
985 error = sync_error_factory_->CreateAndUploadError(
986 FROM_HERE,
987 "ProcessSyncChanges failed on ChangeType ACTION_UPDATE");
988 continue;
990 if (existing_keyword_turl && (existing_keyword_turl != existing_turl)) {
991 // Resolve any conflicts with other entries so we can safely update the
992 // keyword.
993 ResolveSyncKeywordConflict(turl.get(), existing_keyword_turl,
994 &new_changes);
996 if (UpdateNoNotify(existing_turl, *turl)) {
997 NotifyObservers();
998 MaybeUpdateDSEAfterSync(existing_turl);
1000 } else {
1001 // We've unexpectedly received an ACTION_INVALID.
1002 error = sync_error_factory_->CreateAndUploadError(
1003 FROM_HERE,
1004 "ProcessSyncChanges received an ACTION_INVALID");
1008 // If something went wrong, we want to prematurely exit to avoid pushing
1009 // inconsistent data to Sync. We return the last error we received.
1010 if (error.IsSet())
1011 return error;
1013 error = sync_processor_->ProcessSyncChanges(from_here, new_changes);
1015 return error;
1018 syncer::SyncMergeResult TemplateURLService::MergeDataAndStartSyncing(
1019 syncer::ModelType type,
1020 const syncer::SyncDataList& initial_sync_data,
1021 scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
1022 scoped_ptr<syncer::SyncErrorFactory> sync_error_factory) {
1023 DCHECK(loaded_);
1024 DCHECK_EQ(type, syncer::SEARCH_ENGINES);
1025 DCHECK(!sync_processor_.get());
1026 DCHECK(sync_processor.get());
1027 DCHECK(sync_error_factory.get());
1028 syncer::SyncMergeResult merge_result(type);
1030 // Disable sync if we failed to load.
1031 if (load_failed_) {
1032 merge_result.set_error(syncer::SyncError(
1033 FROM_HERE, syncer::SyncError::DATATYPE_ERROR,
1034 "Local database load failed.", syncer::SEARCH_ENGINES));
1035 return merge_result;
1038 sync_processor_ = sync_processor.Pass();
1039 sync_error_factory_ = sync_error_factory.Pass();
1041 // We do a lot of calls to Add/Remove/ResetTemplateURL here, so ensure we
1042 // don't step on our own toes.
1043 base::AutoReset<bool> processing_changes(&processing_syncer_changes_, true);
1045 // We've started syncing, so set our origin member to the base Sync value.
1046 // As we move through Sync Code, we may set this to increasingly specific
1047 // origins so we can tell what exactly caused a DSP change.
1048 base::AutoReset<DefaultSearchChangeOrigin> change_origin(&dsp_change_origin_,
1049 DSP_CHANGE_SYNC_UNINTENTIONAL);
1051 syncer::SyncChangeList new_changes;
1053 // Build maps of our sync GUIDs to syncer::SyncData.
1054 SyncDataMap local_data_map = CreateGUIDToSyncDataMap(
1055 GetAllSyncData(syncer::SEARCH_ENGINES));
1056 SyncDataMap sync_data_map = CreateGUIDToSyncDataMap(initial_sync_data);
1058 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
1060 merge_result.set_num_items_before_association(local_data_map.size());
1061 for (SyncDataMap::const_iterator iter = sync_data_map.begin();
1062 iter != sync_data_map.end(); ++iter) {
1063 TemplateURL* local_turl = GetTemplateURLForGUID(iter->first);
1064 scoped_ptr<TemplateURL> sync_turl(
1065 CreateTemplateURLFromTemplateURLAndSyncData(
1066 client_.get(), prefs_, search_terms_data(), local_turl,
1067 iter->second, &new_changes));
1068 if (!sync_turl.get())
1069 continue;
1071 if (pre_sync_deletes_.find(sync_turl->sync_guid()) !=
1072 pre_sync_deletes_.end()) {
1073 // This entry was deleted before the initial sync began (possibly through
1074 // preprocessing in TemplateURLService's loading code). Ignore it and send
1075 // an ACTION_DELETE up to the server.
1076 new_changes.push_back(
1077 syncer::SyncChange(FROM_HERE,
1078 syncer::SyncChange::ACTION_DELETE,
1079 iter->second));
1080 UMA_HISTOGRAM_ENUMERATION(kDeleteSyncedEngineHistogramName,
1081 DELETE_ENGINE_PRE_SYNC, DELETE_ENGINE_MAX);
1082 continue;
1085 if (local_turl) {
1086 DCHECK(IsFromSync(local_turl, sync_data_map));
1087 // This local search engine is already synced. If the timestamp differs
1088 // from Sync, we need to update locally or to the cloud. Note that if the
1089 // timestamps are equal, we touch neither.
1090 if (sync_turl->last_modified() > local_turl->last_modified()) {
1091 // We've received an update from Sync. We should replace all synced
1092 // fields in the local TemplateURL. Note that this includes the
1093 // TemplateURLID and the TemplateURL may have to be reparsed. This
1094 // also makes the local data's last_modified timestamp equal to Sync's,
1095 // avoiding an Update on the next MergeData call.
1096 if (UpdateNoNotify(local_turl, *sync_turl))
1097 NotifyObservers();
1098 merge_result.set_num_items_modified(
1099 merge_result.num_items_modified() + 1);
1100 } else if (sync_turl->last_modified() < local_turl->last_modified()) {
1101 // Otherwise, we know we have newer data, so update Sync with our
1102 // data fields.
1103 new_changes.push_back(
1104 syncer::SyncChange(FROM_HERE,
1105 syncer::SyncChange::ACTION_UPDATE,
1106 local_data_map[local_turl->sync_guid()]));
1108 local_data_map.erase(iter->first);
1109 } else {
1110 // The search engine from the cloud has not been synced locally. Merge it
1111 // into our local model. This will handle any conflicts with local (and
1112 // already-synced) TemplateURLs. It will prefer to keep entries from Sync
1113 // over not-yet-synced TemplateURLs.
1114 MergeInSyncTemplateURL(sync_turl.get(), sync_data_map, &new_changes,
1115 &local_data_map, &merge_result);
1119 // The remaining SyncData in local_data_map should be everything that needs to
1120 // be pushed as ADDs to sync.
1121 for (SyncDataMap::const_iterator iter = local_data_map.begin();
1122 iter != local_data_map.end(); ++iter) {
1123 new_changes.push_back(
1124 syncer::SyncChange(FROM_HERE,
1125 syncer::SyncChange::ACTION_ADD,
1126 iter->second));
1129 // Do some post-processing on the change list to ensure that we are sending
1130 // valid changes to sync_processor_.
1131 PruneSyncChanges(&sync_data_map, &new_changes);
1133 LogDuplicatesHistogram(GetTemplateURLs());
1134 merge_result.set_num_items_after_association(
1135 GetAllSyncData(syncer::SEARCH_ENGINES).size());
1136 merge_result.set_error(
1137 sync_processor_->ProcessSyncChanges(FROM_HERE, new_changes));
1138 if (merge_result.error().IsSet())
1139 return merge_result;
1141 // The ACTION_DELETEs from this set are processed. Empty it so we don't try to
1142 // reuse them on the next call to MergeDataAndStartSyncing.
1143 pre_sync_deletes_.clear();
1145 models_associated_ = true;
1146 return merge_result;
1149 void TemplateURLService::StopSyncing(syncer::ModelType type) {
1150 DCHECK_EQ(type, syncer::SEARCH_ENGINES);
1151 models_associated_ = false;
1152 sync_processor_.reset();
1153 sync_error_factory_.reset();
1156 void TemplateURLService::ProcessTemplateURLChange(
1157 const tracked_objects::Location& from_here,
1158 const TemplateURL* turl,
1159 syncer::SyncChange::SyncChangeType type) {
1160 DCHECK_NE(type, syncer::SyncChange::ACTION_INVALID);
1161 DCHECK(turl);
1163 if (!models_associated_)
1164 return; // Not syncing.
1166 if (processing_syncer_changes_)
1167 return; // These are changes originating from us. Ignore.
1169 // Avoid syncing keywords managed by policy.
1170 if (turl->created_by_policy())
1171 return;
1173 // Avoid syncing extension-controlled search engines.
1174 if (turl->GetType() == TemplateURL::NORMAL_CONTROLLED_BY_EXTENSION)
1175 return;
1177 syncer::SyncChangeList changes;
1179 syncer::SyncData sync_data = CreateSyncDataFromTemplateURL(*turl);
1180 changes.push_back(syncer::SyncChange(from_here,
1181 type,
1182 sync_data));
1184 sync_processor_->ProcessSyncChanges(FROM_HERE, changes);
1187 // static
1188 syncer::SyncData TemplateURLService::CreateSyncDataFromTemplateURL(
1189 const TemplateURL& turl) {
1190 sync_pb::EntitySpecifics specifics;
1191 sync_pb::SearchEngineSpecifics* se_specifics =
1192 specifics.mutable_search_engine();
1193 se_specifics->set_short_name(base::UTF16ToUTF8(turl.short_name()));
1194 se_specifics->set_keyword(base::UTF16ToUTF8(turl.keyword()));
1195 se_specifics->set_favicon_url(turl.favicon_url().spec());
1196 se_specifics->set_url(turl.url());
1197 se_specifics->set_safe_for_autoreplace(turl.safe_for_autoreplace());
1198 se_specifics->set_originating_url(turl.originating_url().spec());
1199 se_specifics->set_date_created(turl.date_created().ToInternalValue());
1200 se_specifics->set_input_encodings(JoinString(turl.input_encodings(), ';'));
1201 se_specifics->set_show_in_default_list(turl.show_in_default_list());
1202 se_specifics->set_suggestions_url(turl.suggestions_url());
1203 se_specifics->set_prepopulate_id(turl.prepopulate_id());
1204 se_specifics->set_instant_url(turl.instant_url());
1205 if (!turl.image_url().empty())
1206 se_specifics->set_image_url(turl.image_url());
1207 se_specifics->set_new_tab_url(turl.new_tab_url());
1208 if (!turl.search_url_post_params().empty())
1209 se_specifics->set_search_url_post_params(turl.search_url_post_params());
1210 if (!turl.suggestions_url_post_params().empty()) {
1211 se_specifics->set_suggestions_url_post_params(
1212 turl.suggestions_url_post_params());
1214 if (!turl.instant_url_post_params().empty())
1215 se_specifics->set_instant_url_post_params(turl.instant_url_post_params());
1216 if (!turl.image_url_post_params().empty())
1217 se_specifics->set_image_url_post_params(turl.image_url_post_params());
1218 se_specifics->set_last_modified(turl.last_modified().ToInternalValue());
1219 se_specifics->set_sync_guid(turl.sync_guid());
1220 for (size_t i = 0; i < turl.alternate_urls().size(); ++i)
1221 se_specifics->add_alternate_urls(turl.alternate_urls()[i]);
1222 se_specifics->set_search_terms_replacement_key(
1223 turl.search_terms_replacement_key());
1225 return syncer::SyncData::CreateLocalData(se_specifics->sync_guid(),
1226 se_specifics->keyword(),
1227 specifics);
1230 // static
1231 scoped_ptr<TemplateURL>
1232 TemplateURLService::CreateTemplateURLFromTemplateURLAndSyncData(
1233 TemplateURLServiceClient* client,
1234 PrefService* prefs,
1235 const SearchTermsData& search_terms_data,
1236 TemplateURL* existing_turl,
1237 const syncer::SyncData& sync_data,
1238 syncer::SyncChangeList* change_list) {
1239 DCHECK(change_list);
1241 sync_pb::SearchEngineSpecifics specifics =
1242 sync_data.GetSpecifics().search_engine();
1244 // Past bugs might have caused either of these fields to be empty. Just
1245 // delete this data off the server.
1246 if (specifics.url().empty() || specifics.sync_guid().empty()) {
1247 change_list->push_back(
1248 syncer::SyncChange(FROM_HERE,
1249 syncer::SyncChange::ACTION_DELETE,
1250 sync_data));
1251 UMA_HISTOGRAM_ENUMERATION(kDeleteSyncedEngineHistogramName,
1252 DELETE_ENGINE_EMPTY_FIELD, DELETE_ENGINE_MAX);
1253 return NULL;
1256 TemplateURLData data(existing_turl ?
1257 existing_turl->data() : TemplateURLData());
1258 data.SetShortName(base::UTF8ToUTF16(specifics.short_name()));
1259 data.originating_url = GURL(specifics.originating_url());
1260 base::string16 keyword(base::UTF8ToUTF16(specifics.keyword()));
1261 // NOTE: Once this code has shipped in a couple of stable releases, we can
1262 // probably remove the migration portion, comment out the
1263 // "autogenerate_keyword" field entirely in the .proto file, and fold the
1264 // empty keyword case into the "delete data" block above.
1265 bool reset_keyword =
1266 specifics.autogenerate_keyword() || specifics.keyword().empty();
1267 if (reset_keyword)
1268 keyword = base::ASCIIToUTF16("dummy"); // Will be replaced below.
1269 DCHECK(!keyword.empty());
1270 data.SetKeyword(keyword);
1271 data.SetURL(specifics.url());
1272 data.suggestions_url = specifics.suggestions_url();
1273 data.instant_url = specifics.instant_url();
1274 data.image_url = specifics.image_url();
1275 data.new_tab_url = specifics.new_tab_url();
1276 data.search_url_post_params = specifics.search_url_post_params();
1277 data.suggestions_url_post_params = specifics.suggestions_url_post_params();
1278 data.instant_url_post_params = specifics.instant_url_post_params();
1279 data.image_url_post_params = specifics.image_url_post_params();
1280 data.favicon_url = GURL(specifics.favicon_url());
1281 data.show_in_default_list = specifics.show_in_default_list();
1282 data.safe_for_autoreplace = specifics.safe_for_autoreplace();
1283 base::SplitString(specifics.input_encodings(), ';', &data.input_encodings);
1284 // If the server data has duplicate encodings, we'll want to push an update
1285 // below to correct it. Note that we also fix this in
1286 // GetSearchProvidersUsingKeywordResult(), since otherwise we'd never correct
1287 // local problems for clients which have disabled search engine sync.
1288 bool deduped = DeDupeEncodings(&data.input_encodings);
1289 data.date_created = base::Time::FromInternalValue(specifics.date_created());
1290 data.last_modified = base::Time::FromInternalValue(specifics.last_modified());
1291 data.prepopulate_id = specifics.prepopulate_id();
1292 data.sync_guid = specifics.sync_guid();
1293 data.alternate_urls.clear();
1294 for (int i = 0; i < specifics.alternate_urls_size(); ++i)
1295 data.alternate_urls.push_back(specifics.alternate_urls(i));
1296 data.search_terms_replacement_key = specifics.search_terms_replacement_key();
1298 scoped_ptr<TemplateURL> turl(new TemplateURL(data));
1299 // If this TemplateURL matches a built-in prepopulated template URL, it's
1300 // possible that sync is trying to modify fields that should not be touched.
1301 // Revert these fields to the built-in values.
1302 UpdateTemplateURLIfPrepopulated(turl.get(), prefs);
1304 // We used to sync keywords associated with omnibox extensions, but no longer
1305 // want to. However, if we delete these keywords from sync, we'll break any
1306 // synced old versions of Chrome which were relying on them. Instead, for now
1307 // we simply ignore these.
1308 // TODO(vasilii): After a few Chrome versions, change this to go ahead and
1309 // delete these from sync.
1310 DCHECK(client);
1311 client->RestoreExtensionInfoIfNecessary(turl.get());
1312 if (turl->GetType() == TemplateURL::OMNIBOX_API_EXTENSION)
1313 return NULL;
1315 DCHECK_EQ(TemplateURL::NORMAL, turl->GetType());
1316 if (reset_keyword || deduped) {
1317 if (reset_keyword)
1318 turl->ResetKeywordIfNecessary(search_terms_data, true);
1319 syncer::SyncData sync_data = CreateSyncDataFromTemplateURL(*turl);
1320 change_list->push_back(syncer::SyncChange(FROM_HERE,
1321 syncer::SyncChange::ACTION_UPDATE,
1322 sync_data));
1323 } else if (turl->IsGoogleSearchURLWithReplaceableKeyword(search_terms_data)) {
1324 if (!existing_turl) {
1325 // We're adding a new TemplateURL that uses the Google base URL, so set
1326 // its keyword appropriately for the local environment.
1327 turl->ResetKeywordIfNecessary(search_terms_data, false);
1328 } else if (existing_turl->IsGoogleSearchURLWithReplaceableKeyword(
1329 search_terms_data)) {
1330 // Ignore keyword changes triggered by the Google base URL changing on
1331 // another client. If the base URL changes in this client as well, we'll
1332 // pick that up separately at the appropriate time. Otherwise, changing
1333 // the keyword here could result in having the wrong keyword for the local
1334 // environment.
1335 turl->data_.SetKeyword(existing_turl->keyword());
1339 return turl.Pass();
1342 // static
1343 SyncDataMap TemplateURLService::CreateGUIDToSyncDataMap(
1344 const syncer::SyncDataList& sync_data) {
1345 SyncDataMap data_map;
1346 for (syncer::SyncDataList::const_iterator i(sync_data.begin());
1347 i != sync_data.end();
1348 ++i)
1349 data_map[i->GetSpecifics().search_engine().sync_guid()] = *i;
1350 return data_map;
1353 void TemplateURLService::Init(const Initializer* initializers,
1354 int num_initializers) {
1355 if (client_)
1356 client_->SetOwner(this);
1358 // GoogleURLTracker is not created in tests.
1359 if (google_url_tracker_) {
1360 google_url_updated_subscription_ =
1361 google_url_tracker_->RegisterCallback(base::Bind(
1362 &TemplateURLService::GoogleBaseURLChanged, base::Unretained(this)));
1365 if (prefs_) {
1366 pref_change_registrar_.Init(prefs_);
1367 pref_change_registrar_.Add(
1368 prefs::kSyncedDefaultSearchProviderGUID,
1369 base::Bind(
1370 &TemplateURLService::OnSyncedDefaultSearchProviderGUIDChanged,
1371 base::Unretained(this)));
1374 DefaultSearchManager::Source source = DefaultSearchManager::FROM_USER;
1375 TemplateURLData* dse =
1376 default_search_manager_.GetDefaultSearchEngine(&source);
1377 ApplyDefaultSearchChange(dse, source);
1379 if (num_initializers > 0) {
1380 // This path is only hit by test code and is used to simulate a loaded
1381 // TemplateURLService.
1382 ChangeToLoadedState();
1384 // Add specific initializers, if any.
1385 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
1386 for (int i(0); i < num_initializers; ++i) {
1387 DCHECK(initializers[i].keyword);
1388 DCHECK(initializers[i].url);
1389 DCHECK(initializers[i].content);
1391 // TemplateURLService ends up owning the TemplateURL, don't try and free
1392 // it.
1393 TemplateURLData data;
1394 data.SetShortName(base::UTF8ToUTF16(initializers[i].content));
1395 data.SetKeyword(base::UTF8ToUTF16(initializers[i].keyword));
1396 data.SetURL(initializers[i].url);
1397 TemplateURL* template_url = new TemplateURL(data);
1398 AddNoNotify(template_url, true);
1400 // Set the first provided identifier to be the default.
1401 if (i == 0)
1402 default_search_manager_.SetUserSelectedDefaultSearchEngine(data);
1406 // Request a server check for the correct Google URL if Google is the
1407 // default search engine.
1408 RequestGoogleURLTrackerServerCheckIfNecessary();
1411 void TemplateURLService::RemoveFromMaps(TemplateURL* template_url) {
1412 const base::string16& keyword = template_url->keyword();
1413 DCHECK_NE(0U, keyword_to_template_map_.count(keyword));
1414 if (keyword_to_template_map_[keyword] == template_url) {
1415 // We need to check whether the keyword can now be provided by another
1416 // TemplateURL. See the comments in AddToMaps() for more information on
1417 // extension keywords and how they can coexist with non-extension keywords.
1418 // In the case of more than one extension, we use the most recently
1419 // installed (which will be the most recently added, which will have the
1420 // highest ID).
1421 TemplateURL* best_fallback = NULL;
1422 for (TemplateURLVector::const_iterator i(template_urls_.begin());
1423 i != template_urls_.end(); ++i) {
1424 TemplateURL* turl = *i;
1425 // This next statement relies on the fact that there can only be one
1426 // non-Omnibox API TemplateURL with a given keyword.
1427 if ((turl != template_url) && (turl->keyword() == keyword) &&
1428 (!best_fallback ||
1429 (best_fallback->GetType() != TemplateURL::OMNIBOX_API_EXTENSION) ||
1430 ((turl->GetType() == TemplateURL::OMNIBOX_API_EXTENSION) &&
1431 (turl->id() > best_fallback->id()))))
1432 best_fallback = turl;
1434 if (best_fallback)
1435 keyword_to_template_map_[keyword] = best_fallback;
1436 else
1437 keyword_to_template_map_.erase(keyword);
1440 if (template_url->GetType() == TemplateURL::OMNIBOX_API_EXTENSION)
1441 return;
1443 if (!template_url->sync_guid().empty())
1444 guid_to_template_map_.erase(template_url->sync_guid());
1445 // |provider_map_| is only initialized after loading has completed.
1446 if (loaded_) {
1447 provider_map_->Remove(template_url);
1451 void TemplateURLService::AddToMaps(TemplateURL* template_url) {
1452 bool template_url_is_omnibox_api =
1453 template_url->GetType() == TemplateURL::OMNIBOX_API_EXTENSION;
1454 const base::string16& keyword = template_url->keyword();
1455 KeywordToTemplateMap::const_iterator i =
1456 keyword_to_template_map_.find(keyword);
1457 if (i == keyword_to_template_map_.end()) {
1458 keyword_to_template_map_[keyword] = template_url;
1459 } else {
1460 const TemplateURL* existing_url = i->second;
1461 // We should only have overlapping keywords when at least one comes from
1462 // an extension. In that case, the ranking order is:
1463 // Manually-modified keywords > extension keywords > replaceable keywords
1464 // When there are multiple extensions, the last-added wins.
1465 bool existing_url_is_omnibox_api =
1466 existing_url->GetType() == TemplateURL::OMNIBOX_API_EXTENSION;
1467 DCHECK(existing_url_is_omnibox_api || template_url_is_omnibox_api);
1468 if (existing_url_is_omnibox_api ?
1469 !CanReplace(template_url) : CanReplace(existing_url))
1470 keyword_to_template_map_[keyword] = template_url;
1473 if (template_url_is_omnibox_api)
1474 return;
1476 if (!template_url->sync_guid().empty())
1477 guid_to_template_map_[template_url->sync_guid()] = template_url;
1478 // |provider_map_| is only initialized after loading has completed.
1479 if (loaded_)
1480 provider_map_->Add(template_url, search_terms_data());
1483 // Helper for partition() call in next function.
1484 bool HasValidID(TemplateURL* t_url) {
1485 return t_url->id() != kInvalidTemplateURLID;
1488 void TemplateURLService::SetTemplateURLs(TemplateURLVector* urls) {
1489 // Partition the URLs first, instead of implementing the loops below by simply
1490 // scanning the input twice. While it's not supposed to happen normally, it's
1491 // possible for corrupt databases to return multiple entries with the same
1492 // keyword. In this case, the first loop may delete the first entry when
1493 // adding the second. If this happens, the second loop must not attempt to
1494 // access the deleted entry. Partitioning ensures this constraint.
1495 TemplateURLVector::iterator first_invalid(
1496 std::partition(urls->begin(), urls->end(), HasValidID));
1498 // First, add the items that already have id's, so that the next_id_ gets
1499 // properly set.
1500 for (TemplateURLVector::const_iterator i = urls->begin(); i != first_invalid;
1501 ++i) {
1502 next_id_ = std::max(next_id_, (*i)->id());
1503 AddNoNotify(*i, false);
1506 // Next add the new items that don't have id's.
1507 for (TemplateURLVector::const_iterator i = first_invalid; i != urls->end();
1508 ++i)
1509 AddNoNotify(*i, true);
1511 // Clear the input vector to reduce the chance callers will try to use a
1512 // (possibly deleted) entry.
1513 urls->clear();
1516 void TemplateURLService::ChangeToLoadedState() {
1517 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460 is
1518 // fixed.
1519 tracked_objects::ScopedTracker tracking_profile1(
1520 FROM_HERE_WITH_EXPLICIT_FUNCTION(
1521 "422460 TemplateURLService::ChangeToLoadedState 1"));
1523 DCHECK(!loaded_);
1525 provider_map_->Init(template_urls_, search_terms_data());
1526 loaded_ = true;
1528 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460 is
1529 // fixed.
1530 tracked_objects::ScopedTracker tracking_profile2(
1531 FROM_HERE_WITH_EXPLICIT_FUNCTION(
1532 "422460 TemplateURLService::ChangeToLoadedState 2"));
1534 // This will cause a call to NotifyObservers().
1535 ApplyDefaultSearchChangeNoMetrics(
1536 initial_default_search_provider_ ?
1537 &initial_default_search_provider_->data() : NULL,
1538 default_search_provider_source_);
1539 initial_default_search_provider_.reset();
1541 // TODO(robliao): Remove ScopedTracker below once https://crbug.com/422460 is
1542 // fixed.
1543 tracked_objects::ScopedTracker tracking_profile3(
1544 FROM_HERE_WITH_EXPLICIT_FUNCTION(
1545 "422460 TemplateURLService::ChangeToLoadedState 3"));
1547 on_loaded_callbacks_.Notify();
1550 bool TemplateURLService::CanAddAutogeneratedKeywordForHost(
1551 const std::string& host) {
1552 const TemplateURLSet* urls = provider_map_->GetURLsForHost(host);
1553 if (!urls)
1554 return true;
1555 for (TemplateURLSet::const_iterator i(urls->begin()); i != urls->end(); ++i) {
1556 if (!(*i)->safe_for_autoreplace())
1557 return false;
1559 return true;
1562 bool TemplateURLService::CanReplace(const TemplateURL* t_url) {
1563 return (t_url != default_search_provider_ && !t_url->show_in_default_list() &&
1564 t_url->safe_for_autoreplace());
1567 TemplateURL* TemplateURLService::FindNonExtensionTemplateURLForKeyword(
1568 const base::string16& keyword) {
1569 TemplateURL* keyword_turl = GetTemplateURLForKeyword(keyword);
1570 if (!keyword_turl || (keyword_turl->GetType() == TemplateURL::NORMAL))
1571 return keyword_turl;
1572 // The extension keyword in the model may be hiding a replaceable
1573 // non-extension keyword. Look for it.
1574 for (TemplateURLVector::const_iterator i(template_urls_.begin());
1575 i != template_urls_.end(); ++i) {
1576 if (((*i)->GetType() == TemplateURL::NORMAL) &&
1577 ((*i)->keyword() == keyword))
1578 return *i;
1580 return NULL;
1583 bool TemplateURLService::UpdateNoNotify(TemplateURL* existing_turl,
1584 const TemplateURL& new_values) {
1585 DCHECK(existing_turl);
1586 if (std::find(template_urls_.begin(), template_urls_.end(), existing_turl) ==
1587 template_urls_.end())
1588 return false;
1590 DCHECK_NE(TemplateURL::OMNIBOX_API_EXTENSION, existing_turl->GetType());
1592 base::string16 old_keyword(existing_turl->keyword());
1593 keyword_to_template_map_.erase(old_keyword);
1594 if (!existing_turl->sync_guid().empty())
1595 guid_to_template_map_.erase(existing_turl->sync_guid());
1597 // |provider_map_| is only initialized after loading has completed.
1598 if (loaded_)
1599 provider_map_->Remove(existing_turl);
1601 TemplateURLID previous_id = existing_turl->id();
1602 existing_turl->CopyFrom(new_values);
1603 existing_turl->data_.id = previous_id;
1605 if (loaded_) {
1606 provider_map_->Add(existing_turl, search_terms_data());
1609 const base::string16& keyword = existing_turl->keyword();
1610 KeywordToTemplateMap::const_iterator i =
1611 keyword_to_template_map_.find(keyword);
1612 if (i == keyword_to_template_map_.end()) {
1613 keyword_to_template_map_[keyword] = existing_turl;
1614 } else {
1615 // We can theoretically reach here in two cases:
1616 // * There is an existing extension keyword and sync brings in a rename of
1617 // a non-extension keyword to match. In this case we just need to pick
1618 // which keyword has priority to update the keyword map.
1619 // * Autogeneration of the keyword for a Google default search provider
1620 // at load time causes it to conflict with an existing keyword. In this
1621 // case we delete the existing keyword if it's replaceable, or else undo
1622 // the change in keyword for |existing_turl|.
1623 TemplateURL* existing_keyword_turl = i->second;
1624 if (existing_keyword_turl->GetType() != TemplateURL::NORMAL) {
1625 if (!CanReplace(existing_turl))
1626 keyword_to_template_map_[keyword] = existing_turl;
1627 } else {
1628 if (CanReplace(existing_keyword_turl)) {
1629 RemoveNoNotify(existing_keyword_turl);
1630 } else {
1631 existing_turl->data_.SetKeyword(old_keyword);
1632 keyword_to_template_map_[old_keyword] = existing_turl;
1636 if (!existing_turl->sync_guid().empty())
1637 guid_to_template_map_[existing_turl->sync_guid()] = existing_turl;
1639 if (web_data_service_.get())
1640 web_data_service_->UpdateKeyword(existing_turl->data());
1642 // Inform sync of the update.
1643 ProcessTemplateURLChange(
1644 FROM_HERE, existing_turl, syncer::SyncChange::ACTION_UPDATE);
1646 if (default_search_provider_ == existing_turl &&
1647 default_search_provider_source_ == DefaultSearchManager::FROM_USER) {
1648 default_search_manager_.SetUserSelectedDefaultSearchEngine(
1649 default_search_provider_->data());
1651 return true;
1654 // static
1655 void TemplateURLService::UpdateTemplateURLIfPrepopulated(
1656 TemplateURL* template_url,
1657 PrefService* prefs) {
1658 int prepopulate_id = template_url->prepopulate_id();
1659 if (template_url->prepopulate_id() == 0)
1660 return;
1662 size_t default_search_index;
1663 ScopedVector<TemplateURLData> prepopulated_urls =
1664 TemplateURLPrepopulateData::GetPrepopulatedEngines(
1665 prefs, &default_search_index);
1667 for (size_t i = 0; i < prepopulated_urls.size(); ++i) {
1668 if (prepopulated_urls[i]->prepopulate_id == prepopulate_id) {
1669 MergeIntoPrepopulatedEngineData(template_url, prepopulated_urls[i]);
1670 template_url->CopyFrom(TemplateURL(*prepopulated_urls[i]));
1675 void TemplateURLService::MaybeUpdateDSEAfterSync(TemplateURL* synced_turl) {
1676 if (prefs_ &&
1677 (synced_turl->sync_guid() ==
1678 prefs_->GetString(prefs::kSyncedDefaultSearchProviderGUID))) {
1679 default_search_manager_.SetUserSelectedDefaultSearchEngine(
1680 synced_turl->data());
1684 void TemplateURLService::UpdateKeywordSearchTermsForURL(
1685 const URLVisitedDetails& details) {
1686 if (!details.url.is_valid())
1687 return;
1689 const TemplateURLSet* urls_for_host =
1690 provider_map_->GetURLsForHost(details.url.host());
1691 if (!urls_for_host)
1692 return;
1694 for (TemplateURLSet::const_iterator i = urls_for_host->begin();
1695 i != urls_for_host->end(); ++i) {
1696 base::string16 search_terms;
1697 if ((*i)->ExtractSearchTermsFromURL(details.url, search_terms_data(),
1698 &search_terms) &&
1699 !search_terms.empty()) {
1700 if (details.is_keyword_transition) {
1701 // The visit is the result of the user entering a keyword, generate a
1702 // KEYWORD_GENERATED visit for the KEYWORD so that the keyword typed
1703 // count is boosted.
1704 AddTabToSearchVisit(**i);
1706 if (client_) {
1707 client_->SetKeywordSearchTermsForURL(
1708 details.url, (*i)->id(), search_terms);
1714 void TemplateURLService::AddTabToSearchVisit(const TemplateURL& t_url) {
1715 // Only add visits for entries the user hasn't modified. If the user modified
1716 // the entry the keyword may no longer correspond to the host name. It may be
1717 // possible to do something more sophisticated here, but it's so rare as to
1718 // not be worth it.
1719 if (!t_url.safe_for_autoreplace())
1720 return;
1722 if (!client_)
1723 return;
1725 GURL url(
1726 url_fixer::FixupURL(base::UTF16ToUTF8(t_url.keyword()), std::string()));
1727 if (!url.is_valid())
1728 return;
1730 // Synthesize a visit for the keyword. This ensures the url for the keyword is
1731 // autocompleted even if the user doesn't type the url in directly.
1732 client_->AddKeywordGeneratedVisit(url);
1735 void TemplateURLService::RequestGoogleURLTrackerServerCheckIfNecessary() {
1736 if (default_search_provider_ &&
1737 default_search_provider_->HasGoogleBaseURLs(search_terms_data()) &&
1738 google_url_tracker_)
1739 google_url_tracker_->RequestServerCheck(false);
1742 void TemplateURLService::GoogleBaseURLChanged() {
1743 if (!loaded_)
1744 return;
1746 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
1747 bool something_changed = false;
1748 for (TemplateURLVector::iterator i(template_urls_.begin());
1749 i != template_urls_.end(); ++i) {
1750 TemplateURL* t_url = *i;
1751 if (t_url->HasGoogleBaseURLs(search_terms_data())) {
1752 TemplateURL updated_turl(t_url->data());
1753 updated_turl.ResetKeywordIfNecessary(search_terms_data(), false);
1754 KeywordToTemplateMap::const_iterator existing_entry =
1755 keyword_to_template_map_.find(updated_turl.keyword());
1756 if ((existing_entry != keyword_to_template_map_.end()) &&
1757 (existing_entry->second != t_url)) {
1758 // The new autogenerated keyword conflicts with another TemplateURL.
1759 // Overwrite it if it's replaceable; otherwise, leave |t_url| using its
1760 // current keyword. (This will not prevent |t_url| from auto-updating
1761 // the keyword in the future if the conflicting TemplateURL disappears.)
1762 // Note that we must still update |t_url| in this case, or the
1763 // |provider_map_| will not be updated correctly.
1764 if (CanReplace(existing_entry->second))
1765 RemoveNoNotify(existing_entry->second);
1766 else
1767 updated_turl.data_.SetKeyword(t_url->keyword());
1769 something_changed = true;
1770 // This will send the keyword change to sync. Note that other clients
1771 // need to reset the keyword to an appropriate local value when this
1772 // change arrives; see CreateTemplateURLFromTemplateURLAndSyncData().
1773 UpdateNoNotify(t_url, updated_turl);
1776 if (something_changed)
1777 NotifyObservers();
1780 void TemplateURLService::OnDefaultSearchChange(
1781 const TemplateURLData* data,
1782 DefaultSearchManager::Source source) {
1783 if (prefs_ && (source == DefaultSearchManager::FROM_USER) &&
1784 ((source != default_search_provider_source_) ||
1785 !IdenticalSyncGUIDs(data, GetDefaultSearchProvider()))) {
1786 prefs_->SetString(prefs::kSyncedDefaultSearchProviderGUID, data->sync_guid);
1788 ApplyDefaultSearchChange(data, source);
1791 void TemplateURLService::ApplyDefaultSearchChange(
1792 const TemplateURLData* data,
1793 DefaultSearchManager::Source source) {
1794 if (!ApplyDefaultSearchChangeNoMetrics(data, source))
1795 return;
1797 UMA_HISTOGRAM_ENUMERATION(
1798 "Search.DefaultSearchChangeOrigin", dsp_change_origin_, DSP_CHANGE_MAX);
1800 if (GetDefaultSearchProvider() &&
1801 GetDefaultSearchProvider()->HasGoogleBaseURLs(search_terms_data()) &&
1802 !dsp_change_callback_.is_null())
1803 dsp_change_callback_.Run();
1806 bool TemplateURLService::ApplyDefaultSearchChangeNoMetrics(
1807 const TemplateURLData* data,
1808 DefaultSearchManager::Source source) {
1809 if (!loaded_) {
1810 // Set |initial_default_search_provider_| from the preferences. This is
1811 // mainly so we can hold ownership until we get to the point where the list
1812 // of keywords from Web Data is the owner of everything including the
1813 // default.
1814 bool changed = TemplateURL::MatchesData(
1815 initial_default_search_provider_.get(), data, search_terms_data());
1816 initial_default_search_provider_.reset(
1817 data ? new TemplateURL(*data) : NULL);
1818 default_search_provider_source_ = source;
1819 return changed;
1822 // Prevent recursion if we update the value stored in default_search_manager_.
1823 // Note that we exclude the case of data == NULL because that could cause a
1824 // false positive for recursion when the initial_default_search_provider_ is
1825 // NULL due to policy. We'll never actually get recursion with data == NULL.
1826 if (source == default_search_provider_source_ && data != NULL &&
1827 TemplateURL::MatchesData(default_search_provider_, data,
1828 search_terms_data()))
1829 return false;
1831 // This may be deleted later. Use exclusively for pointer comparison to detect
1832 // a change.
1833 TemplateURL* previous_default_search_engine = default_search_provider_;
1835 KeywordWebDataService::BatchModeScoper scoper(web_data_service_.get());
1836 if (default_search_provider_source_ == DefaultSearchManager::FROM_POLICY ||
1837 source == DefaultSearchManager::FROM_POLICY) {
1838 // We do this both to remove any no-longer-applicable policy-defined DSE as
1839 // well as to add the new one, if appropriate.
1840 UpdateProvidersCreatedByPolicy(
1841 &template_urls_,
1842 source == DefaultSearchManager::FROM_POLICY ? data : NULL);
1845 if (!data) {
1846 default_search_provider_ = NULL;
1847 } else if (source == DefaultSearchManager::FROM_EXTENSION) {
1848 default_search_provider_ = FindMatchingExtensionTemplateURL(
1849 *data, TemplateURL::NORMAL_CONTROLLED_BY_EXTENSION);
1850 } else if (source == DefaultSearchManager::FROM_FALLBACK) {
1851 default_search_provider_ =
1852 FindPrepopulatedTemplateURL(data->prepopulate_id);
1853 if (default_search_provider_) {
1854 TemplateURLData update_data(*data);
1855 update_data.sync_guid = default_search_provider_->sync_guid();
1856 if (!default_search_provider_->safe_for_autoreplace()) {
1857 update_data.safe_for_autoreplace = false;
1858 update_data.SetKeyword(default_search_provider_->keyword());
1859 update_data.SetShortName(default_search_provider_->short_name());
1861 UpdateNoNotify(default_search_provider_, TemplateURL(update_data));
1862 } else {
1863 // Normally the prepopulated fallback should be present in
1864 // |template_urls_|, but in a few cases it might not be:
1865 // (1) Tests that initialize the TemplateURLService in peculiar ways.
1866 // (2) If the user deleted the pre-populated default and we subsequently
1867 // lost their user-selected value.
1868 TemplateURL* new_dse = new TemplateURL(*data);
1869 if (AddNoNotify(new_dse, true))
1870 default_search_provider_ = new_dse;
1872 } else if (source == DefaultSearchManager::FROM_USER) {
1873 default_search_provider_ = GetTemplateURLForGUID(data->sync_guid);
1874 if (!default_search_provider_ && data->prepopulate_id) {
1875 default_search_provider_ =
1876 FindPrepopulatedTemplateURL(data->prepopulate_id);
1878 TemplateURLData new_data(*data);
1879 new_data.show_in_default_list = true;
1880 if (default_search_provider_) {
1881 UpdateNoNotify(default_search_provider_, TemplateURL(new_data));
1882 } else {
1883 new_data.id = kInvalidTemplateURLID;
1884 TemplateURL* new_dse = new TemplateURL(new_data);
1885 if (AddNoNotify(new_dse, true))
1886 default_search_provider_ = new_dse;
1888 if (default_search_provider_ && prefs_) {
1889 prefs_->SetString(prefs::kSyncedDefaultSearchProviderGUID,
1890 default_search_provider_->sync_guid());
1895 default_search_provider_source_ = source;
1897 bool changed = default_search_provider_ != previous_default_search_engine;
1898 if (changed)
1899 RequestGoogleURLTrackerServerCheckIfNecessary();
1901 NotifyObservers();
1903 return changed;
1906 bool TemplateURLService::AddNoNotify(TemplateURL* template_url,
1907 bool newly_adding) {
1908 DCHECK(template_url);
1910 if (newly_adding) {
1911 DCHECK_EQ(kInvalidTemplateURLID, template_url->id());
1912 DCHECK(std::find(template_urls_.begin(), template_urls_.end(),
1913 template_url) == template_urls_.end());
1914 template_url->data_.id = ++next_id_;
1917 template_url->ResetKeywordIfNecessary(search_terms_data(), false);
1918 // Check whether |template_url|'s keyword conflicts with any already in the
1919 // model.
1920 TemplateURL* existing_keyword_turl =
1921 GetTemplateURLForKeyword(template_url->keyword());
1923 // Check whether |template_url|'s keyword conflicts with any already in the
1924 // model. Note that we can reach here during the loading phase while
1925 // processing the template URLs from the web data service. In this case,
1926 // GetTemplateURLForKeyword() will look not only at what's already in the
1927 // model, but at the |initial_default_search_provider_|. Since this engine
1928 // will presumably also be present in the web data, we need to double-check
1929 // that any "pre-existing" entries we find are actually coming from
1930 // |template_urls_|, lest we detect a "conflict" between the
1931 // |initial_default_search_provider_| and the web data version of itself.
1932 if (template_url->GetType() != TemplateURL::OMNIBOX_API_EXTENSION &&
1933 existing_keyword_turl &&
1934 existing_keyword_turl->GetType() != TemplateURL::OMNIBOX_API_EXTENSION &&
1935 (std::find(template_urls_.begin(), template_urls_.end(),
1936 existing_keyword_turl) != template_urls_.end())) {
1937 DCHECK_NE(existing_keyword_turl, template_url);
1938 // Only replace one of the TemplateURLs if they are either both extensions,
1939 // or both not extensions.
1940 bool are_same_type = existing_keyword_turl->GetType() ==
1941 template_url->GetType();
1942 if (CanReplace(existing_keyword_turl) && are_same_type) {
1943 RemoveNoNotify(existing_keyword_turl);
1944 } else if (CanReplace(template_url) && are_same_type) {
1945 delete template_url;
1946 return false;
1947 } else {
1948 base::string16 new_keyword =
1949 UniquifyKeyword(*existing_keyword_turl, false);
1950 ResetTemplateURLNoNotify(existing_keyword_turl,
1951 existing_keyword_turl->short_name(), new_keyword,
1952 existing_keyword_turl->url());
1955 template_urls_.push_back(template_url);
1956 AddToMaps(template_url);
1958 if (newly_adding &&
1959 (template_url->GetType() == TemplateURL::NORMAL)) {
1960 if (web_data_service_.get())
1961 web_data_service_->AddKeyword(template_url->data());
1963 // Inform sync of the addition. Note that this will assign a GUID to
1964 // template_url and add it to the guid_to_template_map_.
1965 ProcessTemplateURLChange(FROM_HERE,
1966 template_url,
1967 syncer::SyncChange::ACTION_ADD);
1970 return true;
1973 void TemplateURLService::RemoveNoNotify(TemplateURL* template_url) {
1974 DCHECK(template_url != default_search_provider_);
1976 TemplateURLVector::iterator i =
1977 std::find(template_urls_.begin(), template_urls_.end(), template_url);
1978 if (i == template_urls_.end())
1979 return;
1981 RemoveFromMaps(template_url);
1983 // Remove it from the vector containing all TemplateURLs.
1984 template_urls_.erase(i);
1986 if (template_url->GetType() == TemplateURL::NORMAL) {
1987 if (web_data_service_.get())
1988 web_data_service_->RemoveKeyword(template_url->id());
1990 // Inform sync of the deletion.
1991 ProcessTemplateURLChange(FROM_HERE,
1992 template_url,
1993 syncer::SyncChange::ACTION_DELETE);
1995 UMA_HISTOGRAM_ENUMERATION(kDeleteSyncedEngineHistogramName,
1996 DELETE_ENGINE_USER_ACTION, DELETE_ENGINE_MAX);
1999 if (loaded_ && client_)
2000 client_->DeleteAllSearchTermsForKeyword(template_url->id());
2002 // We own the TemplateURL and need to delete it.
2003 delete template_url;
2006 bool TemplateURLService::ResetTemplateURLNoNotify(
2007 TemplateURL* url,
2008 const base::string16& title,
2009 const base::string16& keyword,
2010 const std::string& search_url) {
2011 DCHECK(!keyword.empty());
2012 DCHECK(!search_url.empty());
2013 TemplateURLData data(url->data());
2014 data.SetShortName(title);
2015 data.SetKeyword(keyword);
2016 if (search_url != data.url()) {
2017 data.SetURL(search_url);
2018 // The urls have changed, reset the favicon url.
2019 data.favicon_url = GURL();
2021 data.safe_for_autoreplace = false;
2022 data.last_modified = clock_->Now();
2023 return UpdateNoNotify(url, TemplateURL(data));
2026 void TemplateURLService::NotifyObservers() {
2027 if (!loaded_)
2028 return;
2030 FOR_EACH_OBSERVER(TemplateURLServiceObserver, model_observers_,
2031 OnTemplateURLServiceChanged());
2034 // |template_urls| are the TemplateURLs loaded from the database.
2035 // |default_from_prefs| is the default search provider from the preferences, or
2036 // NULL if the DSE is not policy-defined.
2038 // This function removes from the vector and the database all the TemplateURLs
2039 // that were set by policy, unless it is the current default search provider, in
2040 // which case it is updated with the data from prefs.
2041 void TemplateURLService::UpdateProvidersCreatedByPolicy(
2042 TemplateURLVector* template_urls,
2043 const TemplateURLData* default_from_prefs) {
2044 DCHECK(template_urls);
2046 for (TemplateURLVector::iterator i = template_urls->begin();
2047 i != template_urls->end(); ) {
2048 TemplateURL* template_url = *i;
2049 if (template_url->created_by_policy()) {
2050 if (default_from_prefs &&
2051 TemplateURL::MatchesData(template_url, default_from_prefs,
2052 search_terms_data())) {
2053 // If the database specified a default search provider that was set
2054 // by policy, and the default search provider from the preferences
2055 // is also set by policy and they are the same, keep the entry in the
2056 // database and the |default_search_provider|.
2057 default_search_provider_ = template_url;
2058 // Prevent us from saving any other entries, or creating a new one.
2059 default_from_prefs = NULL;
2060 ++i;
2061 continue;
2064 RemoveFromMaps(template_url);
2065 i = template_urls->erase(i);
2066 if (web_data_service_.get())
2067 web_data_service_->RemoveKeyword(template_url->id());
2068 delete template_url;
2069 } else {
2070 ++i;
2074 if (default_from_prefs) {
2075 default_search_provider_ = NULL;
2076 default_search_provider_source_ = DefaultSearchManager::FROM_POLICY;
2077 TemplateURLData new_data(*default_from_prefs);
2078 if (new_data.sync_guid.empty())
2079 new_data.sync_guid = base::GenerateGUID();
2080 new_data.created_by_policy = true;
2081 TemplateURL* new_dse = new TemplateURL(new_data);
2082 if (AddNoNotify(new_dse, true))
2083 default_search_provider_ = new_dse;
2087 void TemplateURLService::ResetTemplateURLGUID(TemplateURL* url,
2088 const std::string& guid) {
2089 DCHECK(loaded_);
2090 DCHECK(!guid.empty());
2092 TemplateURLData data(url->data());
2093 data.sync_guid = guid;
2094 UpdateNoNotify(url, TemplateURL(data));
2097 base::string16 TemplateURLService::UniquifyKeyword(const TemplateURL& turl,
2098 bool force) {
2099 if (!force) {
2100 // Already unique.
2101 if (!GetTemplateURLForKeyword(turl.keyword()))
2102 return turl.keyword();
2104 // First, try to return the generated keyword for the TemplateURL (except
2105 // for extensions, as their keywords are not associated with their URLs).
2106 GURL gurl(turl.url());
2107 if (gurl.is_valid() &&
2108 (turl.GetType() != TemplateURL::OMNIBOX_API_EXTENSION)) {
2109 base::string16 keyword_candidate = TemplateURL::GenerateKeyword(gurl);
2110 if (!GetTemplateURLForKeyword(keyword_candidate))
2111 return keyword_candidate;
2115 // We try to uniquify the keyword by appending a special character to the end.
2116 // This is a best-effort approach where we try to preserve the original
2117 // keyword and let the user do what they will after our attempt.
2118 base::string16 keyword_candidate(turl.keyword());
2119 do {
2120 keyword_candidate.append(base::ASCIIToUTF16("_"));
2121 } while (GetTemplateURLForKeyword(keyword_candidate));
2123 return keyword_candidate;
2126 bool TemplateURLService::IsLocalTemplateURLBetter(
2127 const TemplateURL* local_turl,
2128 const TemplateURL* sync_turl) {
2129 DCHECK(GetTemplateURLForGUID(local_turl->sync_guid()));
2130 return local_turl->last_modified() > sync_turl->last_modified() ||
2131 local_turl->created_by_policy() ||
2132 local_turl== GetDefaultSearchProvider();
2135 void TemplateURLService::ResolveSyncKeywordConflict(
2136 TemplateURL* unapplied_sync_turl,
2137 TemplateURL* applied_sync_turl,
2138 syncer::SyncChangeList* change_list) {
2139 DCHECK(loaded_);
2140 DCHECK(unapplied_sync_turl);
2141 DCHECK(applied_sync_turl);
2142 DCHECK(change_list);
2143 DCHECK_EQ(applied_sync_turl->keyword(), unapplied_sync_turl->keyword());
2144 DCHECK_EQ(TemplateURL::NORMAL, applied_sync_turl->GetType());
2146 // Both |unapplied_sync_turl| and |applied_sync_turl| are known to Sync, so
2147 // don't delete either of them. Instead, determine which is "better" and
2148 // uniquify the other one, sending an update to the server for the updated
2149 // entry.
2150 const bool applied_turl_is_better =
2151 IsLocalTemplateURLBetter(applied_sync_turl, unapplied_sync_turl);
2152 TemplateURL* loser = applied_turl_is_better ?
2153 unapplied_sync_turl : applied_sync_turl;
2154 base::string16 new_keyword = UniquifyKeyword(*loser, false);
2155 DCHECK(!GetTemplateURLForKeyword(new_keyword));
2156 if (applied_turl_is_better) {
2157 // Just set the keyword of |unapplied_sync_turl|. The caller is responsible
2158 // for adding or updating unapplied_sync_turl in the local model.
2159 unapplied_sync_turl->data_.SetKeyword(new_keyword);
2160 } else {
2161 // Update |applied_sync_turl| in the local model with the new keyword.
2162 TemplateURLData data(applied_sync_turl->data());
2163 data.SetKeyword(new_keyword);
2164 if (UpdateNoNotify(applied_sync_turl, TemplateURL(data)))
2165 NotifyObservers();
2167 // The losing TemplateURL should have their keyword updated. Send a change to
2168 // the server to reflect this change.
2169 syncer::SyncData sync_data = CreateSyncDataFromTemplateURL(*loser);
2170 change_list->push_back(syncer::SyncChange(FROM_HERE,
2171 syncer::SyncChange::ACTION_UPDATE,
2172 sync_data));
2175 void TemplateURLService::MergeInSyncTemplateURL(
2176 TemplateURL* sync_turl,
2177 const SyncDataMap& sync_data,
2178 syncer::SyncChangeList* change_list,
2179 SyncDataMap* local_data,
2180 syncer::SyncMergeResult* merge_result) {
2181 DCHECK(sync_turl);
2182 DCHECK(!GetTemplateURLForGUID(sync_turl->sync_guid()));
2183 DCHECK(IsFromSync(sync_turl, sync_data));
2185 TemplateURL* conflicting_turl =
2186 FindNonExtensionTemplateURLForKeyword(sync_turl->keyword());
2187 bool should_add_sync_turl = true;
2189 // If there was no TemplateURL in the local model that conflicts with
2190 // |sync_turl|, skip the following preparation steps and just add |sync_turl|
2191 // directly. Otherwise, modify |conflicting_turl| to make room for
2192 // |sync_turl|.
2193 if (conflicting_turl) {
2194 if (IsFromSync(conflicting_turl, sync_data)) {
2195 // |conflicting_turl| is already known to Sync, so we're not allowed to
2196 // remove it. In this case, we want to uniquify the worse one and send an
2197 // update for the changed keyword to sync. We can reuse the logic from
2198 // ResolveSyncKeywordConflict for this.
2199 ResolveSyncKeywordConflict(sync_turl, conflicting_turl, change_list);
2200 merge_result->set_num_items_modified(
2201 merge_result->num_items_modified() + 1);
2202 } else {
2203 // |conflicting_turl| is not yet known to Sync. If it is better, then we
2204 // want to transfer its values up to sync. Otherwise, we remove it and
2205 // allow the entry from Sync to overtake it in the model.
2206 const std::string guid = conflicting_turl->sync_guid();
2207 if (IsLocalTemplateURLBetter(conflicting_turl, sync_turl)) {
2208 ResetTemplateURLGUID(conflicting_turl, sync_turl->sync_guid());
2209 syncer::SyncData sync_data =
2210 CreateSyncDataFromTemplateURL(*conflicting_turl);
2211 change_list->push_back(syncer::SyncChange(
2212 FROM_HERE, syncer::SyncChange::ACTION_UPDATE, sync_data));
2213 // Note that in this case we do not add the Sync TemplateURL to the
2214 // local model, since we've effectively "merged" it in by updating the
2215 // local conflicting entry with its sync_guid.
2216 should_add_sync_turl = false;
2217 merge_result->set_num_items_modified(
2218 merge_result->num_items_modified() + 1);
2219 } else {
2220 // We guarantee that this isn't the local search provider. Otherwise,
2221 // local would have won.
2222 DCHECK(conflicting_turl != GetDefaultSearchProvider());
2223 Remove(conflicting_turl);
2224 merge_result->set_num_items_deleted(
2225 merge_result->num_items_deleted() + 1);
2227 // This TemplateURL was either removed or overwritten in the local model.
2228 // Remove the entry from the local data so it isn't pushed up to Sync.
2229 local_data->erase(guid);
2233 if (should_add_sync_turl) {
2234 // Force the local ID to kInvalidTemplateURLID so we can add it.
2235 TemplateURLData data(sync_turl->data());
2236 data.id = kInvalidTemplateURLID;
2237 TemplateURL* added = new TemplateURL(data);
2238 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
2239 &dsp_change_origin_, DSP_CHANGE_SYNC_ADD);
2240 if (Add(added))
2241 MaybeUpdateDSEAfterSync(added);
2242 merge_result->set_num_items_added(
2243 merge_result->num_items_added() + 1);
2247 void TemplateURLService::PatchMissingSyncGUIDs(
2248 TemplateURLVector* template_urls) {
2249 DCHECK(template_urls);
2250 for (TemplateURLVector::iterator i = template_urls->begin();
2251 i != template_urls->end(); ++i) {
2252 TemplateURL* template_url = *i;
2253 DCHECK(template_url);
2254 if (template_url->sync_guid().empty() &&
2255 (template_url->GetType() == TemplateURL::NORMAL)) {
2256 template_url->data_.sync_guid = base::GenerateGUID();
2257 if (web_data_service_.get())
2258 web_data_service_->UpdateKeyword(template_url->data());
2263 void TemplateURLService::OnSyncedDefaultSearchProviderGUIDChanged() {
2264 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
2265 &dsp_change_origin_, DSP_CHANGE_SYNC_PREF);
2267 std::string new_guid =
2268 prefs_->GetString(prefs::kSyncedDefaultSearchProviderGUID);
2269 if (new_guid.empty()) {
2270 default_search_manager_.ClearUserSelectedDefaultSearchEngine();
2271 return;
2274 TemplateURL* turl = GetTemplateURLForGUID(new_guid);
2275 if (turl)
2276 default_search_manager_.SetUserSelectedDefaultSearchEngine(turl->data());
2279 TemplateURL* TemplateURLService::FindPrepopulatedTemplateURL(
2280 int prepopulated_id) {
2281 for (TemplateURLVector::const_iterator i = template_urls_.begin();
2282 i != template_urls_.end(); ++i) {
2283 if ((*i)->prepopulate_id() == prepopulated_id)
2284 return *i;
2286 return NULL;
2289 TemplateURL* TemplateURLService::FindTemplateURLForExtension(
2290 const std::string& extension_id,
2291 TemplateURL::Type type) {
2292 DCHECK_NE(TemplateURL::NORMAL, type);
2293 for (TemplateURLVector::const_iterator i = template_urls_.begin();
2294 i != template_urls_.end(); ++i) {
2295 if ((*i)->GetType() == type &&
2296 (*i)->GetExtensionId() == extension_id)
2297 return *i;
2299 return NULL;
2302 TemplateURL* TemplateURLService::FindMatchingExtensionTemplateURL(
2303 const TemplateURLData& data,
2304 TemplateURL::Type type) {
2305 DCHECK_NE(TemplateURL::NORMAL, type);
2306 for (TemplateURLVector::const_iterator i = template_urls_.begin();
2307 i != template_urls_.end(); ++i) {
2308 if ((*i)->GetType() == type &&
2309 TemplateURL::MatchesData(*i, &data, search_terms_data()))
2310 return *i;
2312 return NULL;
2315 void TemplateURLService::UpdateExtensionDefaultSearchEngine() {
2316 TemplateURL* most_recently_intalled_default = NULL;
2317 for (TemplateURLVector::const_iterator i = template_urls_.begin();
2318 i != template_urls_.end(); ++i) {
2319 if (((*i)->GetType() == TemplateURL::NORMAL_CONTROLLED_BY_EXTENSION) &&
2320 (*i)->extension_info_->wants_to_be_default_engine &&
2321 (*i)->SupportsReplacement(search_terms_data()) &&
2322 (!most_recently_intalled_default ||
2323 (most_recently_intalled_default->extension_info_->install_time <
2324 (*i)->extension_info_->install_time)))
2325 most_recently_intalled_default = *i;
2328 if (most_recently_intalled_default) {
2329 base::AutoReset<DefaultSearchChangeOrigin> change_origin(
2330 &dsp_change_origin_, DSP_CHANGE_OVERRIDE_SETTINGS_EXTENSION);
2331 default_search_manager_.SetExtensionControlledDefaultSearchEngine(
2332 most_recently_intalled_default->data());
2333 } else {
2334 default_search_manager_.ClearExtensionControlledDefaultSearchEngine();