23 lines
686 B
C++
23 lines
686 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"
|
|
|
|
// Views platform implementation.
|
|
class WindowTestRunnerViews : public WindowTestRunner {
|
|
public:
|
|
WindowTestRunnerViews();
|
|
|
|
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;
|
|
};
|