OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_METRICS_H_ | 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_METRICS_H_ |
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_METRICS_H_ | 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_METRICS_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "content/browser/service_worker/service_worker_database.h" | 9 #include "content/browser/service_worker/service_worker_database.h" |
10 | 10 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 // Records the time taken to successfully start a worker. |is_installed| | 60 // Records the time taken to successfully start a worker. |is_installed| |
61 // indicates whether the version has been installed. | 61 // indicates whether the version has been installed. |
62 static void RecordStartWorkerTime(const base::TimeDelta& time, | 62 static void RecordStartWorkerTime(const base::TimeDelta& time, |
63 bool is_installed); | 63 bool is_installed); |
64 | 64 |
65 static void RecordActivateEventStatus(ServiceWorkerStatusCode status); | 65 static void RecordActivateEventStatus(ServiceWorkerStatusCode status); |
66 static void RecordInstallEventStatus(ServiceWorkerStatusCode status); | 66 static void RecordInstallEventStatus(ServiceWorkerStatusCode status); |
67 | 67 |
68 // Records the ratio of unhandled events to the all events fired during | 68 // Records the ratio of unhandled events to the all events fired during |
69 // the lifetime of ServiceWorker. | 69 // the lifetime of ServiceWorker. |
70 static void RecordEventStatus(size_t fired_events, size_t handled_events); | 70 static void RecordPerWorkerEventHandledStatus(size_t fired_events, |
| 71 size_t handled_events); |
| 72 |
| 73 // Records if each ServiceWorker event is handled or not. |
| 74 static void RecordEventHandledStatus(bool handled); |
71 | 75 |
72 private: | 76 private: |
73 DISALLOW_IMPLICIT_CONSTRUCTORS(ServiceWorkerMetrics); | 77 DISALLOW_IMPLICIT_CONSTRUCTORS(ServiceWorkerMetrics); |
74 }; | 78 }; |
75 | 79 |
76 } // namespace content | 80 } // namespace content |
77 | 81 |
78 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_METRICS_H_ | 82 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_METRICS_H_ |
OLD | NEW |