2015-01-29 21:53:53 +01:00
|
|
|
// Copyright (c) 2015 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.
|
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_BROWSER_TEMP_WINDOW_X11_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_BROWSER_TEMP_WINDOW_X11_H_
|
|
|
|
#pragma once
|
2015-01-29 21:53:53 +01:00
|
|
|
|
2015-01-30 19:07:13 +01:00
|
|
|
#include "include/cef_base.h"
|
2015-01-29 21:53:53 +01:00
|
|
|
|
|
|
|
namespace client {
|
|
|
|
|
2017-01-17 18:46:49 +01:00
|
|
|
// Represents a singleton hidden window that acts as a temporary parent for
|
2018-09-20 15:00:14 +02:00
|
|
|
// popup browsers. Only accessed on the UI thread.
|
2015-01-29 21:53:53 +01:00
|
|
|
class TempWindowX11 {
|
|
|
|
public:
|
|
|
|
// Returns the singleton window handle.
|
|
|
|
static CefWindowHandle GetWindowHandle();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// A single instance will be created/owned by RootWindowManager.
|
|
|
|
friend class RootWindowManager;
|
2021-06-17 22:08:01 +02:00
|
|
|
// Allow deletion via std::unique_ptr only.
|
|
|
|
friend std::default_delete<TempWindowX11>;
|
2015-01-29 21:53:53 +01:00
|
|
|
|
|
|
|
TempWindowX11();
|
|
|
|
~TempWindowX11();
|
|
|
|
|
|
|
|
CefWindowHandle xwindow_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TempWindowX11);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace client
|
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_BROWSER_TEMP_WINDOW_X11_H_
|