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

@@ -14,7 +14,7 @@ namespace client {
class OsrRenderHandlerWinGL : public OsrRenderHandlerWin {
public:
OsrRenderHandlerWinGL(const OsrRendererSettings& settings, HWND hwnd);
virtual ~OsrRenderHandlerWinGL();
~OsrRenderHandlerWinGL() override;
// Must be called immediately after object creation.
void Initialize(CefRefPtr<CefBrowser> browser);
@@ -45,9 +45,9 @@ class OsrRenderHandlerWinGL : public OsrRenderHandlerWin {
// The below members are only accessed on the UI thread.
OsrRenderer renderer_;
HDC hdc_;
HGLRC hrc_;
bool painting_popup_;
HDC hdc_ = nullptr;
HGLRC hrc_ = nullptr;
bool painting_popup_ = false;
DISALLOW_COPY_AND_ASSIGN(OsrRenderHandlerWinGL);
};