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

Side by Side Diff: chrome/browser/predictors/autocomplete_action_predictor_table.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 #ifndef CHROME_BROWSER_PREDICTORS_AUTOCOMPLETE_ACTION_PREDICTOR_TABLE_H_ 5 #ifndef CHROME_BROWSER_PREDICTORS_AUTOCOMPLETE_ACTION_PREDICTOR_TABLE_H_
6 #define CHROME_BROWSER_PREDICTORS_AUTOCOMPLETE_ACTION_PREDICTOR_TABLE_H_ 6 #define CHROME_BROWSER_PREDICTORS_AUTOCOMPLETE_ACTION_PREDICTOR_TABLE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/macros.h"
11 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
12 #include "chrome/browser/predictors/predictor_table_base.h" 13 #include "chrome/browser/predictors/predictor_table_base.h"
13 #include "url/gurl.h" 14 #include "url/gurl.h"
14 15
15 namespace predictors { 16 namespace predictors {
16 17
17 // This manages the autocomplete predictor table within the SQLite database 18 // This manages the autocomplete predictor table within the SQLite database
18 // passed in to the constructor. It expects the following scheme: 19 // passed in to the constructor. It expects the following scheme:
19 // 20 //
20 // network_action_predictor 21 // network_action_predictor
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 // PredictorTableBase methods (DB thread). 80 // PredictorTableBase methods (DB thread).
80 void CreateTableIfNonExistent() override; 81 void CreateTableIfNonExistent() override;
81 void LogDatabaseStats() override; 82 void LogDatabaseStats() override;
82 83
83 DISALLOW_COPY_AND_ASSIGN(AutocompleteActionPredictorTable); 84 DISALLOW_COPY_AND_ASSIGN(AutocompleteActionPredictorTable);
84 }; 85 };
85 86
86 } // namespace predictors 87 } // namespace predictors
87 88
88 #endif // CHROME_BROWSER_PREDICTORS_AUTOCOMPLETE_ACTION_PREDICTOR_TABLE_H_ 89 #endif // CHROME_BROWSER_PREDICTORS_AUTOCOMPLETE_ACTION_PREDICTOR_TABLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698