2013-04-03 20:20:59 +02:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 03:34:16 +02:00
|
|
|
// 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_CEFCLIENT_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_CEFCLIENT_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "include/cef_base.h"
|
2012-04-12 22:21:50 +02:00
|
|
|
#include "cefclient/client_app.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
class CefApp;
|
|
|
|
class CefBrowser;
|
|
|
|
class CefCommandLine;
|
|
|
|
|
|
|
|
// Returns the main browser window instance.
|
|
|
|
CefRefPtr<CefBrowser> AppGetBrowser();
|
|
|
|
|
|
|
|
// Returns the main application window handle.
|
|
|
|
CefWindowHandle AppGetMainHwnd();
|
|
|
|
|
|
|
|
// Returns the application working directory.
|
|
|
|
std::string AppGetWorkingDirectory();
|
|
|
|
|
|
|
|
// Initialize the application command line.
|
|
|
|
void AppInitCommandLine(int argc, const char* const* argv);
|
|
|
|
|
|
|
|
// Returns the application command line object.
|
|
|
|
CefRefPtr<CefCommandLine> AppGetCommandLine();
|
|
|
|
|
|
|
|
// Returns the application settings based on command line arguments.
|
2013-02-07 20:59:40 +01:00
|
|
|
void AppGetSettings(CefSettings& settings);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2013-03-19 23:59:33 +01:00
|
|
|
// Quit the application message loop.
|
|
|
|
void AppQuitMessageLoop();
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// Implementations for various tests.
|
|
|
|
void RunGetSourceTest(CefRefPtr<CefBrowser> browser);
|
|
|
|
void RunGetTextTest(CefRefPtr<CefBrowser> browser);
|
|
|
|
void RunRequestTest(CefRefPtr<CefBrowser> browser);
|
|
|
|
void RunPopupTest(CefRefPtr<CefBrowser> browser);
|
2012-04-27 21:12:01 +02:00
|
|
|
void RunPluginInfoTest(CefRefPtr<CefBrowser> browser);
|
2013-04-03 20:20:59 +02:00
|
|
|
void RunOtherTests(CefRefPtr<CefBrowser> browser);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
void RunTransparentPopupTest(CefRefPtr<CefBrowser> browser);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // CEF_TESTS_CEFCLIENT_CEFCLIENT_H_
|