HumanRender/human_render/CEF/WindowTestRunnerWin.h

24 lines
743 B
C
Raw Normal View History

2024-12-19 17:46:41 +00:00
// 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<CefBrowser> browser,
int x,
int y,
int width,
int height) override;
void Minimize(CefRefPtr<CefBrowser> browser) override;
void Maximize(CefRefPtr<CefBrowser> browser) override;
void Restore(CefRefPtr<CefBrowser> browser) override;
};