Skip to main content

browser_protocol/
lib.rs

1#![allow(non_snake_case)]
2#![allow(unused_imports)]
3#![allow(dead_code)]
4
5#[cfg(feature = "runtime")]
6pub mod runtime;
7#[cfg(feature = "debugger")]
8pub mod debugger;
9#[cfg(feature = "heap_profiler")]
10pub mod heap_profiler;
11#[cfg(feature = "profiler")]
12pub mod profiler;
13#[cfg(feature = "accessibility")]
14pub mod accessibility;
15#[cfg(feature = "animation")]
16pub mod animation;
17#[cfg(feature = "audits")]
18pub mod audits;
19#[cfg(feature = "autofill")]
20pub mod autofill;
21#[cfg(feature = "backgroundservice")]
22pub mod backgroundservice;
23#[cfg(feature = "bluetoothemulation")]
24pub mod bluetoothemulation;
25#[cfg(feature = "browser")]
26pub mod browser;
27#[cfg(feature = "css")]
28pub mod css;
29#[cfg(feature = "cachestorage")]
30pub mod cachestorage;
31#[cfg(feature = "cast")]
32pub mod cast;
33#[cfg(feature = "crashreportcontext")]
34pub mod crashreportcontext;
35#[cfg(feature = "dom")]
36pub mod dom;
37#[cfg(feature = "domdebugger")]
38pub mod domdebugger;
39#[cfg(feature = "domsnapshot")]
40pub mod domsnapshot;
41#[cfg(feature = "domstorage")]
42pub mod domstorage;
43#[cfg(feature = "deviceaccess")]
44pub mod deviceaccess;
45#[cfg(feature = "deviceorientation")]
46pub mod deviceorientation;
47#[cfg(feature = "emulation")]
48pub mod emulation;
49#[cfg(feature = "eventbreakpoints")]
50pub mod eventbreakpoints;
51#[cfg(feature = "extensions")]
52pub mod extensions;
53#[cfg(feature = "fedcm")]
54pub mod fedcm;
55#[cfg(feature = "fetch")]
56pub mod fetch;
57#[cfg(feature = "filesystem")]
58pub mod filesystem;
59#[cfg(feature = "headlessexperimental")]
60pub mod headlessexperimental;
61#[cfg(feature = "io")]
62pub mod io;
63#[cfg(feature = "indexeddb")]
64pub mod indexeddb;
65#[cfg(feature = "input")]
66pub mod input;
67#[cfg(feature = "inspector")]
68pub mod inspector;
69#[cfg(feature = "layertree")]
70pub mod layertree;
71#[cfg(feature = "log")]
72pub mod log;
73#[cfg(feature = "media")]
74pub mod media;
75#[cfg(feature = "memory")]
76pub mod memory;
77#[cfg(feature = "network")]
78pub mod network;
79#[cfg(feature = "overlay")]
80pub mod overlay;
81#[cfg(feature = "pwa")]
82pub mod pwa;
83#[cfg(feature = "page")]
84pub mod page;
85#[cfg(feature = "performance")]
86pub mod performance;
87#[cfg(feature = "performancetimeline")]
88pub mod performancetimeline;
89#[cfg(feature = "preload")]
90pub mod preload;
91#[cfg(feature = "security")]
92pub mod security;
93#[cfg(feature = "serviceworker")]
94pub mod serviceworker;
95#[cfg(feature = "smartcardemulation")]
96pub mod smartcardemulation;
97#[cfg(feature = "storage")]
98pub mod storage;
99#[cfg(feature = "systeminfo")]
100pub mod systeminfo;
101#[cfg(feature = "target")]
102pub mod target;
103#[cfg(feature = "tethering")]
104pub mod tethering;
105#[cfg(feature = "tracing")]
106pub mod tracing;
107#[cfg(feature = "webaudio")]
108pub mod webaudio;
109#[cfg(feature = "webauthn")]
110pub mod webauthn;