2013-04-01 19:57:28 +02:00
|
|
|
// Copyright (c) 2013 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_WINDOW_TEST_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_WINDOW_TEST_H_
|
|
|
|
#pragma once
|
|
|
|
|
2015-01-22 21:21:21 +01:00
|
|
|
#include "cefclient/test_runner.h"
|
2013-04-01 19:57:28 +02:00
|
|
|
|
2015-01-22 21:21:21 +01:00
|
|
|
namespace client {
|
2013-04-01 19:57:28 +02:00
|
|
|
namespace window_test {
|
|
|
|
|
2015-01-22 21:21:21 +01:00
|
|
|
/// Handler creation.
|
|
|
|
void CreateMessageHandlers(test_runner::MessageHandlerSet& handlers);
|
2013-04-01 19:57:28 +02:00
|
|
|
|
|
|
|
// Fit |window| inside |display|. Coordinates are relative to the upper-left
|
|
|
|
// corner of the display.
|
|
|
|
void ModifyBounds(const CefRect& display, CefRect& window);
|
|
|
|
|
|
|
|
// Platform implementations.
|
2015-01-22 21:21:21 +01:00
|
|
|
void SetPos(CefRefPtr<CefBrowser> browser,
|
|
|
|
int x, int y, int width, int height);
|
|
|
|
void Minimize(CefRefPtr<CefBrowser> browser);
|
|
|
|
void Maximize(CefRefPtr<CefBrowser> browser);
|
|
|
|
void Restore(CefRefPtr<CefBrowser> browser);
|
2013-04-01 19:57:28 +02:00
|
|
|
|
|
|
|
} // namespace window_test
|
2015-01-22 21:21:21 +01:00
|
|
|
} // namespace client
|
2013-04-01 19:57:28 +02:00
|
|
|
|
|
|
|
#endif // CEF_TESTS_CEFCLIENT_WINDOW_TEST_H_
|