#ifndef CEF_TESTS_SHARED_BROWSER_MAIN_MESSAGE_LOOP_STD_H_
#define CEF_TESTS_SHARED_BROWSER_MAIN_MESSAGE_LOOP_STD_H_
#pragma once
#include "tests/shared/browser/main_message_loop.h"
namespace client {
class MainMessageLoopStd : public MainMessageLoop {
public:
MainMessageLoopStd();
int Run() override;
void Quit() override;
void PostTask(CefRefPtr<CefTask> task) override;
bool RunsTasksOnCurrentThread() const override;
#if defined(OS_WIN)
void SetCurrentModelessDialog(HWND hWndDialog) override;
#endif
private:
DISALLOW_COPY_AND_ASSIGN(MainMessageLoopStd);
};
}
#endif