25 lines
626 B
C
25 lines
626 B
C
// 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.
|
|
|
|
#pragma once
|
|
|
|
#include "CEF/HumanApptypes.h"
|
|
|
|
#if defined(OS_WIN)
|
|
#include "CEF/TempWindowWin.h"
|
|
#elif defined(OS_LINUX)
|
|
//#include "tests/cefclient/browser/temp_window_x11.h"
|
|
#elif defined(OS_MAC)
|
|
//#include "tests/cefclient/browser/temp_window_mac.h"
|
|
#endif
|
|
|
|
#if defined(OS_WIN)
|
|
typedef TempWindowWin TempWindow;
|
|
#elif defined(OS_LINUX)
|
|
typedef TempWindowX11 TempWindow;
|
|
#elif defined(OS_MAC)
|
|
typedef TempWindowMac TempWindow;
|
|
#endif
|
|
|