File: page_load_metrics_mojom_traits.h

package info (click to toggle)
chromium 139.0.7258.127-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 6,122,068 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (205 lines) | stat: -rw-r--r-- 6,916 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_PAGE_LOAD_METRICS_COMMON_PAGE_LOAD_METRICS_MOJOM_TRAITS_H_
#define COMPONENTS_PAGE_LOAD_METRICS_COMMON_PAGE_LOAD_METRICS_MOJOM_TRAITS_H_

#include <cstdint>

#include "base/time/time.h"
#include "components/page_load_metrics/common/page_load_metrics.mojom-shared.h"
#include "mojo/public/cpp/bindings/struct_traits.h"
#include "third_party/blink/public/common/subresource_load_metrics.h"

namespace mojo {

template <>
class StructTraits<page_load_metrics::mojom::SubresourceLoadMetricsDataView,
                   blink::SubresourceLoadMetrics> {
 public:
  static uint32_t number_of_subresources_loaded(
      const blink::SubresourceLoadMetrics& d) {
    return d.number_of_subresources_loaded;
  }
  static uint32_t number_of_subresource_loads_handled_by_service_worker(
      const blink::SubresourceLoadMetrics& d) {
    return d.number_of_subresource_loads_handled_by_service_worker;
  }
  static std::optional<blink::ServiceWorkerSubresourceLoadMetrics>
  service_worker_subresource_load_metrics(
      const blink::SubresourceLoadMetrics& d) {
    return d.service_worker_subresource_load_metrics;
  }
  static bool Read(
      page_load_metrics::mojom::SubresourceLoadMetricsDataView data,
      blink::SubresourceLoadMetrics* out);
};

template <>
class StructTraits<
    page_load_metrics::mojom::ServiceWorkerSubresourceLoadMetricsDataView,
    blink::ServiceWorkerSubresourceLoadMetrics> {
 public:
  static bool image_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.image_handled;
  }
  static bool image_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.image_fallback;
  }
  static bool css_handled(const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.css_handled;
  }
  static bool css_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.css_fallback;
  }
  static bool script_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.script_handled;
  }
  static bool script_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.script_fallback;
  }
  static bool font_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.font_handled;
  }
  static bool font_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.font_fallback;
  }
  static bool raw_handled(const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.raw_handled;
  }
  static bool raw_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.raw_fallback;
  }
  static bool svg_handled(const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.svg_handled;
  }
  static bool svg_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.svg_fallback;
  }
  static bool xsl_handled(const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.xsl_handled;
  }
  static bool xsl_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.xsl_fallback;
  }
  static bool link_prefetch_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.link_prefetch_handled;
  }
  static bool link_prefetch_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.link_prefetch_fallback;
  }
  static bool text_track_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.text_track_handled;
  }
  static bool text_track_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.text_track_fallback;
  }
  static bool audio_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.audio_handled;
  }
  static bool audio_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.audio_fallback;
  }
  static bool video_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.video_handled;
  }
  static bool video_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.video_fallback;
  }
  static bool manifest_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.manifest_handled;
  }
  static bool manifest_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.manifest_fallback;
  }
  static bool speculation_rules_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.speculation_rules_handled;
  }
  static bool speculation_rules_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.speculation_rules_fallback;
  }
  static bool mock_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.mock_handled;
  }
  static bool mock_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.mock_fallback;
  }

  static bool dictionary_handled(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.dictionary_handled;
  }
  static bool dictionary_fallback(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.dictionary_fallback;
  }

  static uint32_t matched_cache_router_source_count(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.matched_cache_router_source_count;
  }

  static uint32_t matched_fetch_event_router_source_count(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.matched_fetch_event_router_source_count;
  }

  static uint32_t matched_network_router_source_count(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.matched_network_router_source_count;
  }

  static uint32_t matched_race_network_and_fetch_router_source_count(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.matched_race_network_and_fetch_router_source_count;
  }

  static uint32_t matched_race_network_and_cache_router_source_count(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.matched_race_network_and_cache_router_source_count;
  }

  static base::TimeDelta total_router_evaluation_time_for_subresources(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.total_router_evaluation_time_for_subresources;
  }

  static base::TimeDelta total_cache_lookup_time_for_subresources(
      const blink::ServiceWorkerSubresourceLoadMetrics& d) {
    return d.total_cache_lookup_time_for_subresources;
  }

  static bool Read(
      page_load_metrics::mojom::ServiceWorkerSubresourceLoadMetricsDataView
          data,
      blink::ServiceWorkerSubresourceLoadMetrics* out);
};

}  // namespace mojo

#endif  // COMPONENTS_PAGE_LOAD_METRICS_COMMON_PAGE_LOAD_METRICS_MOJOM_TRAITS_H_