| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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_RESOURCE_PREFETCH_PREDICTOR_TABLES_H_ | 5 #ifndef CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_TABLES_H_ |
| 6 #define CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_TABLES_H_ | 6 #define CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_TABLES_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 8 | 9 |
| 9 #include <map> | 10 #include <map> |
| 10 #include <string> | 11 #include <string> |
| 11 #include <vector> | 12 #include <vector> |
| 12 | 13 |
| 14 #include "base/macros.h" |
| 13 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 14 #include "chrome/browser/predictors/predictor_table_base.h" | 16 #include "chrome/browser/predictors/predictor_table_base.h" |
| 15 #include "chrome/browser/predictors/resource_prefetch_common.h" | 17 #include "chrome/browser/predictors/resource_prefetch_common.h" |
| 16 #include "content/public/common/resource_type.h" | 18 #include "content/public/common/resource_type.h" |
| 17 #include "url/gurl.h" | 19 #include "url/gurl.h" |
| 18 | 20 |
| 19 namespace sql { | 21 namespace sql { |
| 20 class Statement; | 22 class Statement; |
| 21 } | 23 } |
| 22 | 24 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 sql::Statement* GetHostResourceUpdateStatement(); | 153 sql::Statement* GetHostResourceUpdateStatement(); |
| 152 sql::Statement* GetHostMetadataDeleteStatement(); | 154 sql::Statement* GetHostMetadataDeleteStatement(); |
| 153 sql::Statement* GetHostMetadataUpdateStatement(); | 155 sql::Statement* GetHostMetadataUpdateStatement(); |
| 154 | 156 |
| 155 DISALLOW_COPY_AND_ASSIGN(ResourcePrefetchPredictorTables); | 157 DISALLOW_COPY_AND_ASSIGN(ResourcePrefetchPredictorTables); |
| 156 }; | 158 }; |
| 157 | 159 |
| 158 } // namespace predictors | 160 } // namespace predictors |
| 159 | 161 |
| 160 #endif // CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_TABLES_H_ | 162 #endif // CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_TABLES_H_ |
| OLD | NEW |