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:
@@ -22,7 +22,7 @@ static const int kMsgHaveWork = WM_USER + 1;
|
||||
class MainMessageLoopExternalPumpWin : public MainMessageLoopExternalPump {
|
||||
public:
|
||||
MainMessageLoopExternalPumpWin();
|
||||
~MainMessageLoopExternalPumpWin();
|
||||
~MainMessageLoopExternalPumpWin() override;
|
||||
|
||||
// MainMessageLoopStd methods:
|
||||
void Quit() override;
|
||||
@@ -44,14 +44,13 @@ class MainMessageLoopExternalPumpWin : public MainMessageLoopExternalPump {
|
||||
LPARAM lparam);
|
||||
|
||||
// True if a timer event is currently pending.
|
||||
bool timer_pending_;
|
||||
bool timer_pending_ = false;
|
||||
|
||||
// HWND owned by the thread that CefDoMessageLoopWork should be invoked on.
|
||||
HWND main_thread_target_;
|
||||
HWND main_thread_target_ = nullptr;
|
||||
};
|
||||
|
||||
MainMessageLoopExternalPumpWin::MainMessageLoopExternalPumpWin()
|
||||
: timer_pending_(false), main_thread_target_(nullptr) {
|
||||
MainMessageLoopExternalPumpWin::MainMessageLoopExternalPumpWin() {
|
||||
HINSTANCE hInstance = GetModuleHandle(nullptr);
|
||||
const wchar_t* const kClassName = L"CEFMainTargetHWND";
|
||||
|
||||
|
Reference in New Issue
Block a user