()
| 51 | /// Path to the Unix domain socket for daemon communication. |
| 52 | #[cfg(unix)] |
| 53 | pub fn socket_path() -> PathBuf { |
| 54 | std::env::temp_dir().join("chrome-devtools-daemon.sock") |
| 55 | } |
| 56 | |
| 57 | /// Path to the named-pipe address file for daemon communication (Windows). |
| 58 | #[cfg(windows)] |
no outgoing calls
no test coverage detected