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

Side by Side Diff: components/omnibox/browser/history_quick_provider.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/omnibox/browser/history_quick_provider.h" 5 #include "components/omnibox/browser/history_quick_provider.h"
6 6
7 #include <stddef.h>
8
7 #include <vector> 9 #include <vector>
8 10
9 #include "base/basictypes.h"
10 #include "base/i18n/break_iterator.h" 11 #include "base/i18n/break_iterator.h"
11 #include "base/logging.h" 12 #include "base/logging.h"
12 #include "base/metrics/field_trial.h" 13 #include "base/metrics/field_trial.h"
13 #include "base/prefs/pref_service.h" 14 #include "base/prefs/pref_service.h"
14 #include "base/strings/string_number_conversions.h" 15 #include "base/strings/string_number_conversions.h"
15 #include "base/strings/string_util.h" 16 #include "base/strings/string_util.h"
16 #include "base/strings/utf_string_conversions.h" 17 #include "base/strings/utf_string_conversions.h"
17 #include "components/bookmarks/browser/bookmark_model.h" 18 #include "components/bookmarks/browser/bookmark_model.h"
18 #include "components/history/core/browser/history_database.h" 19 #include "components/history/core/browser/history_database.h"
19 #include "components/history/core/browser/history_service.h" 20 #include "components/history/core/browser/history_service.h"
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 match.description = info.title(); 249 match.description = info.title();
249 match.description_class = SpansFromTermMatch( 250 match.description_class = SpansFromTermMatch(
250 history_match.title_matches, match.description.length(), false); 251 history_match.title_matches, match.description.length(), false);
251 252
252 match.RecordAdditionalInfo("typed count", info.typed_count()); 253 match.RecordAdditionalInfo("typed count", info.typed_count());
253 match.RecordAdditionalInfo("visit count", info.visit_count()); 254 match.RecordAdditionalInfo("visit count", info.visit_count());
254 match.RecordAdditionalInfo("last visit", info.last_visit()); 255 match.RecordAdditionalInfo("last visit", info.last_visit());
255 256
256 return match; 257 return match;
257 } 258 }
OLDNEW
« no previous file with comments | « components/omnibox/browser/history_quick_provider.h ('k') | components/omnibox/browser/history_url_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698