chore: remove spurious trailing namespace comments (#34732)

This commit is contained in:
David Sanders 2022-06-28 01:08:55 -07:00 committed by GitHub
parent e86d1cba75
commit 59d3c12cae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -290,7 +290,7 @@ void BrowserWindow::OnCloseButtonClicked(bool* prevent_default) {
} else { } else {
web_contents()->Close(); web_contents()->Close();
} }
} // namespace api }
void BrowserWindow::OnWindowBlur() { void BrowserWindow::OnWindowBlur() {
if (api_web_contents_) if (api_web_contents_)

View file

@ -66,7 +66,7 @@ struct Converter<network::mojom::CredentialsMode> {
return false; return false;
return true; return true;
} }
}; // namespace gin };
} // namespace gin } // namespace gin

View file

@ -18,7 +18,7 @@ namespace electron {
AutofillDriver::AutofillDriver(content::RenderFrameHost* render_frame_host) AutofillDriver::AutofillDriver(content::RenderFrameHost* render_frame_host)
: render_frame_host_(render_frame_host) { : render_frame_host_(render_frame_host) {
autofill_popup_ = std::make_unique<AutofillPopup>(); autofill_popup_ = std::make_unique<AutofillPopup>();
} // namespace electron }
AutofillDriver::~AutofillDriver() = default; AutofillDriver::~AutofillDriver() = default;

View file

@ -87,7 +87,7 @@ bool ElectronRuntimeAPIDelegate::GetPlatformInfo(PlatformInfo* info) {
} }
return true; return true;
} // namespace extensions }
bool ElectronRuntimeAPIDelegate::RestartDevice(std::string* error_message) { bool ElectronRuntimeAPIDelegate::RestartDevice(std::string* error_message) {
*error_message = "Restart is not supported in Electron"; *error_message = "Restart is not supported in Electron";