| Index: chrome/browser/predictors/predictor_table_base.h
|
| diff --git a/chrome/browser/predictors/predictor_table_base.h b/chrome/browser/predictors/predictor_table_base.h
|
| index 2c115fbf765b666b4012e05ff4053823d64664a5..d622d58e3b26499597bffc3aba88df3e35a79c81 100644
|
| --- a/chrome/browser/predictors/predictor_table_base.h
|
| +++ b/chrome/browser/predictors/predictor_table_base.h
|
| @@ -8,6 +8,8 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "base/synchronization/cancellation_flag.h"
|
|
|
| +class Profile;
|
| +
|
| namespace sql {
|
| class Connection;
|
| }
|
| @@ -26,7 +28,7 @@ class PredictorTableBase
|
|
|
| // DB thread functions.
|
| virtual void CreateTableIfNonExistent() = 0;
|
| - virtual void LogDatabaseStats() = 0;
|
| + virtual void LogDatabaseStats(Profile* profile) = 0;
|
| void Initialize(sql::Connection* db);
|
| void SetCancelled();
|
| sql::Connection* DB();
|
|
|