// Copyright (c) 2016 The Chromium Embedded Framework Authors. All rights // reserved. Use of this source code is governed by a BSD-style license that // can be found in the LICENSE file. #pragma once #include "CEF/WindowTestRunner.h" // Windows platform implementation. Methods are safe to call on any browser // process thread. class WindowTestRunnerWin : public WindowTestRunner { public: WindowTestRunnerWin(); void SetPos(CefRefPtr browser, int x, int y, int width, int height) override; void Minimize(CefRefPtr browser) override; void Maximize(CefRefPtr browser) override; void Restore(CefRefPtr browser) override; };