Index: chrome/browser/webdata/web_intents_table.cc |
diff --git a/chrome/browser/webdata/web_intents_table.cc b/chrome/browser/webdata/web_intents_table.cc |
index b7f9ecd80bc92c792b890dba165224e876e25587..3650c950df7f59185959d94bd13d08438416afec 100644 |
--- a/chrome/browser/webdata/web_intents_table.cc |
+++ b/chrome/browser/webdata/web_intents_table.cc |
@@ -71,6 +71,17 @@ bool WebIntentsTable::IsSyncable() { |
return false; |
} |
+bool WebIntentsTable::MigrateToVersion(int version, |
+ const std::string& app_locale, |
+ bool* update_compatible_version) { |
+ if (version == 46) { |
+ *update_compatible_version = true; |
+ return MigrateToVersion46AddSchemeColumn(); |
+ } |
+ |
+ return true; |
+} |
+ |
// Updates the table by way of renaming the old tables, rerunning |
// the Init method, then selecting old values into the new tables. |
bool WebIntentsTable::MigrateToVersion46AddSchemeColumn() { |