// 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.#ifndef CEF_TESTS_CEFCLIENT_BROWSER_WINDOW_TEST_RUNNER_WIN_H_#define CEF_TESTS_CEFCLIENT_BROWSER_WINDOW_TEST_RUNNER_WIN_H_#pragma once#include "../browser/window_test_runner.h"namespaceclient{namespacewindow_test{// Windows platform implementation. Methods are safe to call on any browser// process thread.classWindowTestRunnerWin:publicWindowTestRunner{public:WindowTestRunnerWin();voidSetPos(CefRefPtr<CefBrowser>browser,intx,inty,intwidth,intheight)OVERRIDE;voidMinimize(CefRefPtr<CefBrowser>browser)OVERRIDE;voidMaximize(CefRefPtr<CefBrowser>browser)OVERRIDE;voidRestore(CefRefPtr<CefBrowser>browser)OVERRIDE;};}// namespace window_test}// namespace client#endif // CEF_TESTS_CEFCLIENT_BROWSER_WINDOW_TEST_RUNNER_WIN_H_