mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
tests: Format with clang-tidy (see #3632)
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
Reference in New Issue
Block a user