2024-01-05 19:03:36 +01:00
|
|
|
// Copyright (c) 2024 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.
|
|
|
|
//
|
2024-06-26 02:12:37 +02:00
|
|
|
// $hash=04e1e7f7b7c3170ba02ab0e1f623a774da489fec$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
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
|
|
|
|
|
|
|
#include "include/capi/cef_request_context_capi.h"
|
2019-04-24 04:50:25 +02:00
|
|
|
#include "include/capi/cef_request_context_handler_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"
|
2019-04-24 04:50:25 +02:00
|
|
|
#include "include/cef_request_context_handler.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#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();
|
2019-01-23 16:42:12 +01:00
|
|
|
virtual ~CefRequestContextCToCpp();
|
2014-01-06 20:48:18 +01:00
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
// CefRequestContext methods.
|
2021-06-17 21:43:06 +02:00
|
|
|
bool IsSame(CefRefPtr<CefRequestContext> other) override;
|
|
|
|
bool IsSharingWith(CefRefPtr<CefRequestContext> other) override;
|
|
|
|
bool IsGlobal() override;
|
|
|
|
CefRefPtr<CefRequestContextHandler> GetHandler() override;
|
|
|
|
CefString GetCachePath() override;
|
2019-03-22 23:11:51 +01:00
|
|
|
CefRefPtr<CefCookieManager> GetCookieManager(
|
2021-06-17 21:43:06 +02: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,
|
2021-06-17 21:43:06 +02:00
|
|
|
CefRefPtr<CefSchemeHandlerFactory> factory) override;
|
|
|
|
bool ClearSchemeHandlerFactories() override;
|
2016-02-23 20:29:18 +01:00
|
|
|
void ClearCertificateExceptions(
|
2021-06-17 21:43:06 +02:00
|
|
|
CefRefPtr<CefCompletionCallback> callback) override;
|
2019-07-12 22:44:43 +02:00
|
|
|
void ClearHttpAuthCredentials(
|
2021-06-17 21:43:06 +02:00
|
|
|
CefRefPtr<CefCompletionCallback> callback) override;
|
|
|
|
void CloseAllConnections(CefRefPtr<CefCompletionCallback> callback) override;
|
2016-02-24 00:27:05 +01:00
|
|
|
void ResolveHost(const CefString& origin,
|
2021-06-17 21:43:06 +02:00
|
|
|
CefRefPtr<CefResolveCallback> callback) override;
|
2021-04-15 01:28:22 +02:00
|
|
|
CefRefPtr<CefMediaRouter> GetMediaRouter(
|
2021-06-17 21:43:06 +02:00
|
|
|
CefRefPtr<CefCompletionCallback> callback) override;
|
2023-05-25 13:15:06 +02:00
|
|
|
CefRefPtr<CefValue> GetWebsiteSetting(
|
|
|
|
const CefString& requesting_url,
|
|
|
|
const CefString& top_level_url,
|
|
|
|
cef_content_setting_types_t content_type) override;
|
|
|
|
void SetWebsiteSetting(const CefString& requesting_url,
|
|
|
|
const CefString& top_level_url,
|
|
|
|
cef_content_setting_types_t content_type,
|
|
|
|
CefRefPtr<CefValue> value) override;
|
|
|
|
cef_content_setting_values_t GetContentSetting(
|
|
|
|
const CefString& requesting_url,
|
|
|
|
const CefString& top_level_url,
|
|
|
|
cef_content_setting_types_t content_type) override;
|
|
|
|
void SetContentSetting(const CefString& requesting_url,
|
|
|
|
const CefString& top_level_url,
|
|
|
|
cef_content_setting_types_t content_type,
|
|
|
|
cef_content_setting_values_t value) override;
|
2024-03-29 17:48:33 +01:00
|
|
|
void SetChromeColorScheme(cef_color_variant_t variant,
|
|
|
|
cef_color_t user_color) override;
|
|
|
|
cef_color_variant_t GetChromeColorSchemeMode() override;
|
|
|
|
cef_color_t GetChromeColorSchemeColor() override;
|
|
|
|
cef_color_variant_t GetChromeColorSchemeVariant() override;
|
2022-10-26 00:50:29 +02:00
|
|
|
|
|
|
|
// CefPreferenceManager methods.
|
|
|
|
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;
|
|
|
|
bool SetPreference(const CefString& name,
|
|
|
|
CefRefPtr<CefValue> value,
|
|
|
|
CefString& error) override;
|
2014-01-06 20:48:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_
|