2010-10-20 17:12:46 +02:00
|
|
|
// Copyright (c) 2010 The Chromium Embedded Framework Authors. All rights
|
2010-10-03 23:04:50 +02:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "include/cef.h"
|
|
|
|
#include "include/cef_capi.h"
|
|
|
|
#include "include/cef_nplugin.h"
|
|
|
|
#include "include/cef_nplugin_capi.h"
|
2011-04-09 03:05:30 +02:00
|
|
|
#include "libcef_dll/cpptoc/cookie_visitor_cpptoc.h"
|
2011-02-23 04:45:13 +01:00
|
|
|
#include "libcef_dll/cpptoc/domevent_listener_cpptoc.h"
|
|
|
|
#include "libcef_dll/cpptoc/domvisitor_cpptoc.h"
|
2010-10-18 17:37:33 +02:00
|
|
|
#include "libcef_dll/cpptoc/download_handler_cpptoc.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
#include "libcef_dll/cpptoc/read_handler_cpptoc.h"
|
|
|
|
#include "libcef_dll/cpptoc/scheme_handler_cpptoc.h"
|
|
|
|
#include "libcef_dll/cpptoc/scheme_handler_factory_cpptoc.h"
|
|
|
|
#include "libcef_dll/cpptoc/task_cpptoc.h"
|
2011-04-07 03:58:49 +02:00
|
|
|
#include "libcef_dll/cpptoc/v8accessor_cpptoc.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
#include "libcef_dll/cpptoc/v8handler_cpptoc.h"
|
2011-02-15 19:07:24 +01:00
|
|
|
#include "libcef_dll/cpptoc/web_urlrequest_client_cpptoc.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
#include "libcef_dll/cpptoc/write_handler_cpptoc.h"
|
|
|
|
#include "libcef_dll/ctocpp/browser_ctocpp.h"
|
2011-02-23 04:45:13 +01:00
|
|
|
#include "libcef_dll/ctocpp/domdocument_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/domevent_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/domnode_ctocpp.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
#include "libcef_dll/ctocpp/post_data_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/post_data_element_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/request_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/stream_reader_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/stream_writer_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/v8value_ctocpp.h"
|
2011-02-21 23:44:06 +01:00
|
|
|
#include "libcef_dll/ctocpp/v8context_ctocpp.h"
|
2011-02-15 19:07:24 +01:00
|
|
|
#include "libcef_dll/ctocpp/web_urlrequest_ctocpp.h"
|
2010-10-20 17:12:46 +02:00
|
|
|
#include "libcef_dll/ctocpp/xml_reader_ctocpp.h"
|
2010-10-24 18:41:21 +02:00
|
|
|
#include "libcef_dll/ctocpp/zip_reader_ctocpp.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
|
2011-05-20 16:42:25 +02:00
|
|
|
bool CefInitialize(const CefSettings& settings)
|
2010-10-03 23:04:50 +02:00
|
|
|
{
|
2011-05-20 16:42:25 +02:00
|
|
|
return cef_initialize(&settings)?true:false;
|
2010-10-03 23:04:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefShutdown()
|
|
|
|
{
|
|
|
|
cef_shutdown();
|
|
|
|
|
2011-05-20 16:42:25 +02:00
|
|
|
#ifndef NDEBUG
|
2010-10-03 23:04:50 +02:00
|
|
|
// Check that all wrapper objects have been destroyed
|
2011-04-09 03:05:30 +02:00
|
|
|
DCHECK(CefCookieVisitorCppToC::DebugObjCt == 0);
|
2011-02-23 04:45:13 +01:00
|
|
|
DCHECK(CefDOMEventListenerCppToC::DebugObjCt == 0);
|
|
|
|
DCHECK(CefDOMVisitorCppToC::DebugObjCt == 0);
|
2010-10-18 17:37:33 +02:00
|
|
|
DCHECK(CefDownloadHandlerCppToC::DebugObjCt == 0);
|
2010-10-03 23:04:50 +02:00
|
|
|
DCHECK(CefReadHandlerCppToC::DebugObjCt == 0);
|
|
|
|
DCHECK(CefSchemeHandlerCppToC::DebugObjCt == 0);
|
|
|
|
DCHECK(CefSchemeHandlerFactoryCppToC::DebugObjCt == 0);
|
2011-04-07 03:58:49 +02:00
|
|
|
DCHECK(CefV8AccessorCppToC::DebugObjCt == 0);
|
2010-10-03 23:04:50 +02:00
|
|
|
DCHECK(CefV8HandlerCppToC::DebugObjCt == 0);
|
2011-02-15 19:07:24 +01:00
|
|
|
DCHECK(CefWebURLRequestClientCppToC::DebugObjCt == 0);
|
2010-10-03 23:04:50 +02:00
|
|
|
DCHECK(CefWriteHandlerCppToC::DebugObjCt == 0);
|
|
|
|
DCHECK(CefBrowserCToCpp::DebugObjCt == 0);
|
2011-02-23 04:45:13 +01:00
|
|
|
DCHECK(CefDOMDocumentCToCpp::DebugObjCt == 0);
|
|
|
|
DCHECK(CefDOMEventCToCpp::DebugObjCt == 0);
|
|
|
|
DCHECK(CefDOMNodeCToCpp::DebugObjCt == 0);
|
2010-10-03 23:04:50 +02:00
|
|
|
DCHECK(CefRequestCToCpp::DebugObjCt == 0);
|
|
|
|
DCHECK(CefPostDataCToCpp::DebugObjCt == 0);
|
|
|
|
DCHECK(CefPostDataElementCToCpp::DebugObjCt == 0);
|
|
|
|
DCHECK(CefStreamReaderCToCpp::DebugObjCt == 0);
|
|
|
|
DCHECK(CefStreamWriterCToCpp::DebugObjCt == 0);
|
2011-02-21 23:44:06 +01:00
|
|
|
DCHECK(CefV8ContextCToCpp::DebugObjCt == 0);
|
2010-10-03 23:04:50 +02:00
|
|
|
DCHECK(CefV8ValueCToCpp::DebugObjCt == 0);
|
2011-02-15 19:07:24 +01:00
|
|
|
DCHECK(CefWebURLRequestCToCpp::DebugObjCt == 0);
|
2010-10-20 17:12:46 +02:00
|
|
|
DCHECK(CefXmlReaderCToCpp::DebugObjCt == 0);
|
2010-10-24 18:41:21 +02:00
|
|
|
DCHECK(CefZipReaderCToCpp::DebugObjCt == 0);
|
2011-05-20 16:42:25 +02:00
|
|
|
#endif // !NDEBUG
|
2010-10-03 23:04:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefDoMessageLoopWork()
|
|
|
|
{
|
|
|
|
cef_do_message_loop_work();
|
|
|
|
}
|
|
|
|
|
2011-03-24 21:36:47 +01:00
|
|
|
void CefRunMessageLoop()
|
|
|
|
{
|
|
|
|
cef_run_message_loop();
|
|
|
|
}
|
|
|
|
|
2010-11-22 18:49:46 +01:00
|
|
|
bool CefRegisterExtension(const CefString& extension_name,
|
|
|
|
const CefString& javascript_code,
|
2010-10-03 23:04:50 +02:00
|
|
|
CefRefPtr<CefV8Handler> handler)
|
|
|
|
{
|
2010-11-22 18:49:46 +01:00
|
|
|
return cef_register_extension(extension_name.GetStruct(),
|
|
|
|
javascript_code.GetStruct(), CefV8HandlerCppToC::Wrap(handler))?
|
|
|
|
true:false;
|
2010-10-03 23:04:50 +02:00
|
|
|
}
|
|
|
|
|
2011-02-15 19:07:24 +01:00
|
|
|
bool CefRegisterPlugin(const CefPluginInfo& plugin_info)
|
2010-10-03 23:04:50 +02:00
|
|
|
{
|
2011-02-15 19:07:24 +01:00
|
|
|
return cef_register_plugin(&plugin_info)?true:false;
|
2010-10-03 23:04:50 +02:00
|
|
|
}
|
|
|
|
|
2010-11-22 18:49:46 +01:00
|
|
|
bool CefRegisterScheme(const CefString& scheme_name,
|
|
|
|
const CefString& host_name,
|
2011-03-04 18:56:01 +01:00
|
|
|
bool is_standard,
|
2010-10-03 23:04:50 +02:00
|
|
|
CefRefPtr<CefSchemeHandlerFactory> factory)
|
|
|
|
{
|
2010-11-22 18:49:46 +01:00
|
|
|
return cef_register_scheme(scheme_name.GetStruct(), host_name.GetStruct(),
|
2011-03-04 18:56:01 +01:00
|
|
|
is_standard, CefSchemeHandlerFactoryCppToC::Wrap(factory))?true:false;
|
2010-10-03 23:04:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefCurrentlyOn(CefThreadId threadId)
|
|
|
|
{
|
|
|
|
return cef_currently_on(threadId)?true:false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefPostTask(CefThreadId threadId, CefRefPtr<CefTask> task)
|
|
|
|
{
|
|
|
|
return cef_post_task(threadId, CefTaskCppToC::Wrap(task))?true:false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefPostDelayedTask(CefThreadId threadId, CefRefPtr<CefTask> task,
|
|
|
|
long delay_ms)
|
|
|
|
{
|
|
|
|
return cef_post_delayed_task(threadId, CefTaskCppToC::Wrap(task), delay_ms)?
|
|
|
|
true:false;
|
|
|
|
}
|
2011-01-31 21:47:04 +01:00
|
|
|
|
|
|
|
bool CefParseURL(const CefString& url,
|
|
|
|
CefURLParts& parts)
|
|
|
|
{
|
|
|
|
return cef_parse_url(url.GetStruct(), &parts) ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefCreateURL(const CefURLParts& parts,
|
|
|
|
CefString& url)
|
|
|
|
{
|
|
|
|
return cef_create_url(&parts, url.GetWritableStruct()) ? true : false;
|
|
|
|
}
|
2011-04-09 03:05:30 +02:00
|
|
|
|
|
|
|
bool CefVisitAllCookies(CefRefPtr<CefCookieVisitor> visitor)
|
|
|
|
{
|
|
|
|
return cef_visit_all_cookies(CefCookieVisitorCppToC::Wrap(visitor)) ?
|
|
|
|
true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefVisitUrlCookies(const CefString& url, bool includeHttpOnly,
|
|
|
|
CefRefPtr<CefCookieVisitor> visitor)
|
|
|
|
{
|
|
|
|
return cef_visit_url_cookies(url.GetStruct(), includeHttpOnly,
|
|
|
|
CefCookieVisitorCppToC::Wrap(visitor)) ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefSetCookie(const CefString& url, const CefCookie& cookie)
|
|
|
|
{
|
|
|
|
return cef_set_cookie(url.GetStruct(), &cookie) ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefDeleteCookies(const CefString& url, const CefString& cookie_name)
|
|
|
|
{
|
|
|
|
return cef_delete_cookies(url.GetStruct(), cookie_name.GetStruct()) ?
|
|
|
|
true : false;
|
|
|
|
}
|