Chromium Code Reviews| Index: components/webdata/common/web_database_table.h |
| diff --git a/components/webdata/common/web_database_table.h b/components/webdata/common/web_database_table.h |
| index ff75082ed46d257a85943e8d21c5b107fd6050a1..c96a98a9ab2de1d95bf3d28354457a7d0ca344f2 100644 |
| --- a/components/webdata/common/web_database_table.h |
| +++ b/components/webdata/common/web_database_table.h |
| @@ -47,8 +47,9 @@ class WEBDATA_EXPORT WebDatabaseTable { |
| // Migrates this table to |version|. Returns false if there was |
| // migration work to do and it failed, true otherwise. |
| // |
| - // Implementations may set |*update_compatible_version| to true if |
| - // the compatible version should be changed to |version|. |
| + // Implementations may set |*update_compatible_version| to true if the |
| + // compatible version should be changed to |version|, i.e., if the change will |
| + // break previous versions when they try to read the updated database. |
|
Peter Kasting
2017/04/26 18:35:53
Nit: read -> use
(E.g. they might be able to read
please use gerrit instead
2017/04/26 18:37:16
Done.
|
| // Implementations should otherwise not modify this parameter. |
| virtual bool MigrateToVersion(int version, |
| bool* update_compatible_version) = 0; |