Chromium Code Reviews| Index: chrome/browser/importer/importer_uma.cc |
| diff --git a/chrome/browser/importer/importer_uma.cc b/chrome/browser/importer/importer_uma.cc |
| index 839dd6e68d397c4b09ba878b8006fa32cb613baf..1f6ffb0b11890d71a9f15aecd75546f608f6328e 100644 |
| --- a/chrome/browser/importer/importer_uma.cc |
| +++ b/chrome/browser/importer/importer_uma.cc |
| @@ -22,6 +22,7 @@ enum ImporterTypeMetrics { |
| #endif |
| IMPORTER_METRICS_GOOGLE_TOOLBAR5 = 5, // obsolete |
| IMPORTER_METRICS_BOOKMARKS_FILE = 6, |
| + IMPORTER_METRICS_EDGE = 7, |
|
Ilya Sherman
2015/11/26 02:04:43
nit: Should this be guarded with an "#if defined(O
forshaw
2015/11/30 12:57:58
Acknowledged.
|
| // Insert new values here. Never remove any existing values, as this enum is |
| // used to bucket a UMA histogram, and removing values breaks that. |
| @@ -41,6 +42,9 @@ void LogImporterUseToMetrics(const std::string& metric_postfix, |
| case TYPE_IE: |
| metrics_type = IMPORTER_METRICS_IE; |
| break; |
| + case TYPE_EDGE: |
| + metrics_type = IMPORTER_METRICS_EDGE; |
| + break; |
| #endif |
| case TYPE_FIREFOX: |
| metrics_type = IMPORTER_METRICS_FIREFOX3; |