fix: performance-no-automatic-move clang-tidy warnings (#44742)

* fix: performance-no-automatic-move in GetLogFileName()

remove `const` from log_filename.

Warning fixed by this commit:

../../electron/shell/common/logging.cc:40:12: warning: constness of 'log_filename' prevents automatic move [performance-no-automatic-move]

* fix: performance-no-automatic-move in GetBundleResourcePath()

remove `const` from request_relative_path.

Warning fixed by this commit:

electron/shell/browser/extensions/electron_extensions_browser_client.cc:187:10: warning: constness of 'request_relative_path' prevents automatic move [performance-no-automatic-move]
This commit is contained in:
Charles Kerr 2024-11-20 18:10:30 -06:00 committed by GitHub
parent 0ea64850af
commit 6789431f74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 10 deletions

View file

@ -29,16 +29,13 @@ base::FilePath GetLogFileName(const base::CommandLine& command_line) {
if (!filename.empty())
return base::FilePath::FromUTF8Unsafe(filename);
const base::FilePath log_filename(FILE_PATH_LITERAL("electron_debug.log"));
base::FilePath log_path;
auto log_filename = base::FilePath{FILE_PATH_LITERAL("electron_debug.log")};
if (base::PathService::Get(chrome::DIR_LOGS, &log_path)) {
log_path = log_path.Append(log_filename);
return log_path;
} else {
// error with path service, just use some default file somewhere
return log_filename;
}
if (base::FilePath path; base::PathService::Get(chrome::DIR_LOGS, &path))
return path.Append(log_filename);
// error with path service, just use some default file somewhere
return log_filename;
}
namespace {