2022-01-06 13:34:35 -05:00
|
|
|
// Copyright (c) 2022 The Chromium Embedded Framework Authors. All rights
|
2014-01-06 19:48:18 +00: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.
|
|
|
|
//
|
2022-10-25 18:50:29 -04:00
|
|
|
// $hash=92f03524a854cd701e24fadc9680585ef875a8c8$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2014-01-06 19:48:18 +00:00
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_
|
|
|
|
#define CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_
|
|
|
|
#pragma once
|
|
|
|
|
2016-11-17 18:52:42 -05:00
|
|
|
#if !defined(WRAPPING_CEF_SHARED)
|
|
|
|
#error This file can be included wrapper-side only
|
|
|
|
#endif
|
2014-01-06 19:48:18 +00:00
|
|
|
|
2016-02-23 18:27:05 -05:00
|
|
|
#include <vector>
|
2014-01-06 19:48:18 +00:00
|
|
|
#include "include/capi/cef_request_context_capi.h"
|
2019-04-24 02:50:25 +00:00
|
|
|
#include "include/capi/cef_request_context_handler_capi.h"
|
2015-03-02 20:25:14 +00: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 02:50:25 +00:00
|
|
|
#include "include/cef_request_context_handler.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#include "include/cef_scheme.h"
|
2017-02-09 17:07:43 -05:00
|
|
|
#include "libcef_dll/ctocpp/ctocpp_ref_counted.h"
|
2014-01-06 19:48:18 +00: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 19:48:18 +00:00
|
|
|
public:
|
2015-04-26 21:40:01 +03:00
|
|
|
CefRequestContextCToCpp();
|
2019-01-23 16:42:12 +01:00
|
|
|
virtual ~CefRequestContextCToCpp();
|
2014-01-06 19:48:18 +00:00
|
|
|
|
2015-04-26 21:40:01 +03:00
|
|
|
// CefRequestContext methods.
|
2021-06-17 15:43:06 -04: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 18:11:51 -04:00
|
|
|
CefRefPtr<CefCookieManager> GetCookieManager(
|
2021-06-17 15:43:06 -04:00
|
|
|
CefRefPtr<CefCompletionCallback> callback) override;
|
2017-05-17 11:29:28 +02:00
|
|
|
bool RegisterSchemeHandlerFactory(
|
|
|
|
const CefString& scheme_name,
|
2015-03-02 20:25:14 +00:00
|
|
|
const CefString& domain_name,
|
2021-06-17 15:43:06 -04:00
|
|
|
CefRefPtr<CefSchemeHandlerFactory> factory) override;
|
|
|
|
bool ClearSchemeHandlerFactories() override;
|
2016-02-23 14:29:18 -05:00
|
|
|
void ClearCertificateExceptions(
|
2021-06-17 15:43:06 -04:00
|
|
|
CefRefPtr<CefCompletionCallback> callback) override;
|
2019-07-12 16:44:43 -04:00
|
|
|
void ClearHttpAuthCredentials(
|
2021-06-17 15:43:06 -04:00
|
|
|
CefRefPtr<CefCompletionCallback> callback) override;
|
|
|
|
void CloseAllConnections(CefRefPtr<CefCompletionCallback> callback) override;
|
2016-02-23 18:27:05 -05:00
|
|
|
void ResolveHost(const CefString& origin,
|
2021-06-17 15:43:06 -04:00
|
|
|
CefRefPtr<CefResolveCallback> callback) override;
|
2017-08-03 18:55:19 -04:00
|
|
|
void LoadExtension(const CefString& root_directory,
|
|
|
|
CefRefPtr<CefDictionaryValue> manifest,
|
2021-06-17 15:43:06 -04:00
|
|
|
CefRefPtr<CefExtensionHandler> handler) override;
|
|
|
|
bool DidLoadExtension(const CefString& extension_id) override;
|
|
|
|
bool HasExtension(const CefString& extension_id) override;
|
|
|
|
bool GetExtensions(std::vector<CefString>& extension_ids) override;
|
|
|
|
CefRefPtr<CefExtension> GetExtension(const CefString& extension_id) override;
|
2021-04-14 19:28:22 -04:00
|
|
|
CefRefPtr<CefMediaRouter> GetMediaRouter(
|
2021-06-17 15:43:06 -04:00
|
|
|
CefRefPtr<CefCompletionCallback> callback) override;
|
2022-10-25 18:50:29 -04: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 19:48:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_DLL_CTOCPP_REQUEST_CONTEXT_CTOCPP_H_
|