| OLD | NEW |
| 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_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 "chrome/browser/predictors/predictor_table_base.h" | 8 #include "chrome/browser/predictors/predictor_table_base.h" |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 private: | 64 private: |
| 65 friend class PredictorDatabaseInternal; | 65 friend class PredictorDatabaseInternal; |
| 66 friend class MockResourcePrefetchPredictorTables; | 66 friend class MockResourcePrefetchPredictorTables; |
| 67 | 67 |
| 68 ResourcePrefetchPredictorTables(); | 68 ResourcePrefetchPredictorTables(); |
| 69 virtual ~ResourcePrefetchPredictorTables(); | 69 virtual ~ResourcePrefetchPredictorTables(); |
| 70 | 70 |
| 71 // PredictorTableBase methods. | 71 // PredictorTableBase methods. |
| 72 virtual void CreateTableIfNonExistent() OVERRIDE; | 72 virtual void CreateTableIfNonExistent() OVERRIDE; |
| 73 virtual void LogDatabaseStats() OVERRIDE; | 73 virtual void LogDatabaseStats(Profile* profile) OVERRIDE; |
| 74 | 74 |
| 75 DISALLOW_COPY_AND_ASSIGN(ResourcePrefetchPredictorTables); | 75 DISALLOW_COPY_AND_ASSIGN(ResourcePrefetchPredictorTables); |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 } // namespace predictors | 78 } // namespace predictors |
| 79 | 79 |
| 80 #endif // CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_TABLES_H_ | 80 #endif // CHROME_BROWSER_PREDICTORS_RESOURCE_PREFETCH_PREDICTOR_TABLES_H_ |
| OLD | NEW |