| Index: chrome/browser/resources/md_history/constants.js
|
| diff --git a/chrome/browser/resources/md_history/constants.js b/chrome/browser/resources/md_history/constants.js
|
| index ed4010737ecea9e07544907491cbe26a5b921530..9df2c5e6b6f8ec240097b0e3038f03a84396f00b 100644
|
| --- a/chrome/browser/resources/md_history/constants.js
|
| +++ b/chrome/browser/resources/md_history/constants.js
|
| @@ -21,6 +21,21 @@ var BROWSING_GAP_TIME = 15 * 60 * 1000;
|
| var TITLE_MAX_LENGTH = 300;
|
|
|
| /**
|
| + * Histogram buckets for UMA tracking of which view is being shown to the user.
|
| + * Keep this in sync with the HistoryPageView enum in histograms.xml.
|
| + * This enum is append-only.
|
| + * @enum {number}
|
| + */
|
| +var HistoryPageViewHistogram = {
|
| + HISTORY: 0,
|
| + GROUPED_WEEK: 1,
|
| + GROUPED_MONTH: 2,
|
| + SYNCED_TABS: 3,
|
| + SIGNIN_PROMO: 4,
|
| + END: 5, // Should always be last.
|
| +};
|
| +
|
| +/**
|
| * @enum {number}
|
| */
|
| var HistoryRange = {
|
|
|