24 lines
743 B
C
24 lines
743 B
C
|
// 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;
|
||
|
};
|