OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 // |
| 5 // UMA related constants for session restore experiments and metrics. |
| 6 |
| 7 #include "content/public/browser/session_restore_uma.h" |
| 8 |
| 9 namespace content { |
| 10 |
| 11 // Field trials. |
| 12 |
| 13 // The name of the ongoing session restore field trial. |
| 14 const char kSessionRestoreBackgroundLoading[] = |
| 15 "SessionRestoreBackgroundLoading"; |
| 16 |
| 17 // Metrics. |
| 18 |
| 19 const char kSessionRestoreActions[] = "SessionRestore.Actions"; |
| 20 |
| 21 const char kSessionRestoreTabCount[] = "SessionRestore.TabCount"; |
| 22 |
| 23 const char kSessionRestoreTabActions[] = "SessionRestore.TabActions"; |
| 24 |
| 25 } // namespace content |
OLD | NEW |