mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-09 08:42:39 +01:00
ff976bc07f
- Move wrapper classes from cef_wrapper.h to wrapper/ directory. - Move C API functions/classes from cef_capi.h to capi/ directory. - Move global function implementations from cef_context.cc to *_impl.cc files. - Output auto-generated file paths in cef_paths.gypi. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@442 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
59 lines
2.1 KiB
C++
59 lines
2.1 KiB
C++
// Copyright (c) 2011 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 _CEFCLIENT_H
|
|
#define _CEFCLIENT_H
|
|
|
|
#include "include/cef_base.h"
|
|
|
|
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.
|
|
void AppGetSettings(CefSettings& settings, CefRefPtr<CefApp>& app);
|
|
|
|
// Returns the application browser settings based on command line arguments.
|
|
void AppGetBrowserSettings(CefBrowserSettings& settings);
|
|
|
|
// Implementations for various tests.
|
|
void RunGetSourceTest(CefRefPtr<CefBrowser> browser);
|
|
void RunGetTextTest(CefRefPtr<CefBrowser> browser);
|
|
void RunRequestTest(CefRefPtr<CefBrowser> browser);
|
|
void RunJavaScriptExecuteTest(CefRefPtr<CefBrowser> browser);
|
|
void RunJavaScriptInvokeTest(CefRefPtr<CefBrowser> browser);
|
|
void RunPopupTest(CefRefPtr<CefBrowser> browser);
|
|
void RunLocalStorageTest(CefRefPtr<CefBrowser> browser);
|
|
void RunAccelerated2DCanvasTest(CefRefPtr<CefBrowser> browser);
|
|
void RunAcceleratedLayersTest(CefRefPtr<CefBrowser> browser);
|
|
void RunWebGLTest(CefRefPtr<CefBrowser> browser);
|
|
void RunHTML5VideoTest(CefRefPtr<CefBrowser> browser);
|
|
void RunXMLHTTPRequestTest(CefRefPtr<CefBrowser> browser);
|
|
void RunWebURLRequestTest(CefRefPtr<CefBrowser> browser);
|
|
void RunDOMAccessTest(CefRefPtr<CefBrowser> browser);
|
|
void RunDragDropTest(CefRefPtr<CefBrowser> browser);
|
|
void RunModalDialogTest(CefRefPtr<CefBrowser> browser);
|
|
|
|
#if defined(OS_WIN)
|
|
void RunTransparentPopupTest(CefRefPtr<CefBrowser> browser);
|
|
void RunGetImageTest(CefRefPtr<CefBrowser> browser);
|
|
#endif
|
|
|
|
#endif // _CEFCLIENT_H
|