From 6626557902ace77e63fedd0a99da6b34175baa5c Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Sun, 24 Nov 2024 11:53:51 -0600 Subject: [PATCH] refactor: remove unnecessary constructor code (#44826) Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Charles Kerr --- shell/browser/api/electron_api_web_contents.cc | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/shell/browser/api/electron_api_web_contents.cc b/shell/browser/api/electron_api_web_contents.cc index 93a7e8749744..f890907943f3 100644 --- a/shell/browser/api/electron_api_web_contents.cc +++ b/shell/browser/api/electron_api_web_contents.cc @@ -541,16 +541,6 @@ const void* kElectronApiWebContentsKey = &kElectronApiWebContentsKey; const char kRootName[] = ""; struct FileSystem { - FileSystem() = default; - FileSystem(const std::string& type, - const std::string& file_system_name, - const std::string& root_url, - const std::string& file_system_path) - : type(type), - file_system_name(file_system_name), - root_url(root_url), - file_system_path(file_system_path) {} - std::string type; std::string file_system_name; std::string root_url;