tests: Format with clang-tidy (see #3632)

This commit is contained in:
Marshall Greenblatt
2024-01-19 21:22:56 -05:00
parent 9fd312ce04
commit 0a64bb6f9b
108 changed files with 505 additions and 647 deletions

View File

@@ -54,7 +54,7 @@ class BrowserWindow : public ClientHandler::Delegate {
const std::vector<CefDraggableRegion>& regions) = 0;
protected:
virtual ~Delegate() {}
virtual ~Delegate() = default;
};
// Create a new browser and native window.
@@ -135,7 +135,7 @@ class BrowserWindow : public ClientHandler::Delegate {
Delegate* delegate_;
CefRefPtr<CefBrowser> browser_;
CefRefPtr<ClientHandler> client_handler_;
bool is_closing_;
bool is_closing_ = false;
private:
DISALLOW_COPY_AND_ASSIGN(BrowserWindow);