Chromium Code Reviews| Index: chrome/browser/autocomplete/search_provider.cc |
| diff --git a/chrome/browser/autocomplete/search_provider.cc b/chrome/browser/autocomplete/search_provider.cc |
| index 1932639ec29c9f27b618135b49f7aba308cfa628..9c35e3a8b88c187ddf0bc9c14c3a58974d2c6cfd 100644 |
| --- a/chrome/browser/autocomplete/search_provider.cc |
| +++ b/chrome/browser/autocomplete/search_provider.cc |
| @@ -25,7 +25,6 @@ |
| #include "chrome/browser/autocomplete/autocomplete_result.h" |
| #include "chrome/browser/autocomplete/chrome_autocomplete_scheme_classifier.h" |
| #include "chrome/browser/autocomplete/keyword_provider.h" |
| -#include "chrome/browser/bookmarks/bookmark_model_factory.h" |
| #include "chrome/browser/history/history_service.h" |
| #include "chrome/browser/history/history_service_factory.h" |
| #include "chrome/browser/omnibox/omnibox_field_trial.h" |
| @@ -420,11 +419,6 @@ void SearchProvider::UpdateMatches() { |
| it->allowed_to_be_default_match = false; |
| } |
| } |
| - |
| - base::TimeTicks update_starred_start_time(base::TimeTicks::Now()); |
| - UpdateStarredStateOfMatches(BookmarkModelFactory::GetForProfile(profile_)); |
| - UMA_HISTOGRAM_TIMES("Omnibox.SearchProvider.UpdateStarredTime", |
|
Peter Kasting
2014/07/24 18:51:34
Make sure this historgram gets properly marked as
hashimoto
2014/07/25 08:36:12
There is no line in histograms.xml which correspon
|
| - base::TimeTicks::Now() - update_starred_start_time); |
| UpdateDone(); |
| } |