2017-01-11 00:00:30 +01:00
|
|
|
// Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
|
2014-01-06 20:48:18 +01:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
//
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// This file was generated by the CEF translator tool. If making changes by
|
|
|
|
// hand only do so within the body of existing method and function
|
|
|
|
// implementations. See the translator.README.txt file in the tools directory
|
|
|
|
// for more information.
|
|
|
|
//
|
2017-05-17 11:29:28 +02:00
|
|
|
// $hash=007659e858fb2ce87b3974d8d304d850434bac8b$
|
|
|
|
//
|
2014-01-06 20:48:18 +01:00
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_
|
|
|
|
#define CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_
|
|
|
|
#pragma once
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#if !defined(WRAPPING_CEF_SHARED)
|
|
|
|
#error This file can be included wrapper-side only
|
|
|
|
#endif
|
2014-01-06 20:48:18 +01:00
|
|
|
|
2016-02-24 00:27:05 +01:00
|
|
|
#include <vector>
|
2014-01-06 20:48:18 +01:00
|
|
|
#include "include/capi/cef_request_context_capi.h"
|
2015-03-02 21:25:14 +01:00
|
|
|
#include "include/capi/cef_scheme_capi.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#include "include/cef_request_context.h"
|
|
|
|
#include "include/cef_scheme.h"
|
2017-02-09 23:07:43 +01:00
|
|
|
#include "libcef_dll/ctocpp/ctocpp_ref_counted.h"
|
2014-01-06 20:48:18 +01:00
|
|
|
|
|
|
|
// Wrap a C structure with a C++ class.
|
|
|
|
// This class may be instantiated and accessed wrapper-side only.
|
|
|
|
class CefRequestContextCToCpp
|
2017-05-17 11:29:28 +02:00
|
|
|
: public CefCToCppRefCounted<CefRequestContextCToCpp,
|
|
|
|
CefRequestContext,
|
|
|
|
cef_request_context_t> {
|
2014-01-06 20:48:18 +01:00
|
|
|
public:
|
2015-04-26 20:40:01 +02:00
|
|
|
CefRequestContextCToCpp();
|
2014-01-06 20:48:18 +01:00
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
// CefRequestContext methods.
|
|
|
|
bool IsSame(CefRefPtr<CefRequestContext> other) OVERRIDE;
|
|
|
|
bool IsSharingWith(CefRefPtr<CefRequestContext> other) OVERRIDE;
|
|
|
|
bool IsGlobal() OVERRIDE;
|
|
|
|
CefRefPtr<CefRequestContextHandler> GetHandler() OVERRIDE;
|
|
|
|
CefString GetCachePath() OVERRIDE;
|
|
|
|
CefRefPtr<CefCookieManager> GetDefaultCookieManager(
|
2015-03-02 21:25:14 +01:00
|
|
|
CefRefPtr<CefCompletionCallback> callback) OVERRIDE;
|
2017-05-17 11:29:28 +02:00
|
|
|
bool RegisterSchemeHandlerFactory(
|
|
|
|
const CefString& scheme_name,
|
2015-03-02 21:25:14 +01:00
|
|
|
const CefString& domain_name,
|
|
|
|
CefRefPtr<CefSchemeHandlerFactory> factory) OVERRIDE;
|
2015-04-26 20:40:01 +02:00
|
|
|
bool ClearSchemeHandlerFactories() OVERRIDE;
|
2015-09-25 13:59:30 +02:00
|
|
|
void PurgePluginListCache(bool reload_pages) OVERRIDE;
|
2015-10-03 01:03:16 +02:00
|
|
|
bool HasPreference(const CefString& name) OVERRIDE;
|
|
|
|
CefRefPtr<CefValue> GetPreference(const CefString& name) OVERRIDE;
|
|
|
|
CefRefPtr<CefDictionaryValue> GetAllPreferences(
|
|
|
|
bool include_defaults) OVERRIDE;
|
|
|
|
bool CanSetPreference(const CefString& name) OVERRIDE;
|
2017-05-17 11:29:28 +02:00
|
|
|
bool SetPreference(const CefString& name,
|
|
|
|
CefRefPtr<CefValue> value,
|
|
|
|
CefString& error) OVERRIDE;
|
2016-02-23 20:29:18 +01:00
|
|
|
void ClearCertificateExceptions(
|
|
|
|
CefRefPtr<CefCompletionCallback> callback) OVERRIDE;
|
|
|
|
void CloseAllConnections(CefRefPtr<CefCompletionCallback> callback) OVERRIDE;
|
2016-02-24 00:27:05 +01:00
|
|
|
void ResolveHost(const CefString& origin,
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefResolveCallback> callback) OVERRIDE;
|
|
|
|
cef_errorcode_t ResolveHostCached(
|
|
|
|
const CefString& origin,
|
2016-02-24 00:27:05 +01:00
|
|
|
std::vector<CefString>& resolved_ips) OVERRIDE;
|
2014-01-06 20:48:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_
|