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

@@ -39,7 +39,7 @@ struct RootWindowConfig {
// |command_line| will be non-nullptr when used for new window creation via
// OnAlreadyRunningAppRelaunch. Otherwise, the global command-line will be
// used.
RootWindowConfig(CefRefPtr<CefCommandLine> command_line = nullptr);
explicit RootWindowConfig(CefRefPtr<CefCommandLine> command_line = nullptr);
// Associated command-line.
CefRefPtr<CefCommandLine> command_line;
@@ -129,7 +129,7 @@ class RootWindow
bool with_osr) = 0;
protected:
virtual ~Delegate() {}
virtual ~Delegate() = default;
};
// Create a new RootWindow object. This method may be called on any thread.
@@ -223,7 +223,7 @@ class RootWindow
RootWindow();
virtual ~RootWindow();
Delegate* delegate_;
Delegate* delegate_ = nullptr;
};
} // namespace client