Skip to content

Commit a968b40

Browse files
committed
Upgrade to 74.1.19
1 parent bebb956 commit a968b40

21 files changed

+5627
-5734
lines changed

src/include/capi/cef_cookie_capi.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
// by hand. See the translator.README.txt file in the tools directory for
3434
// more information.
3535
//
36-
// $hash=8e5c27c998b6aabcaf43a4cc7f97064d49eaf8b9$
36+
// $hash=48b5fa68109eed1ea30fa0c805218ebd258c0573$
3737
//
3838

3939
#ifndef CEF_INCLUDE_CAPI_CEF_COOKIE_CAPI_H_
@@ -237,7 +237,7 @@ typedef struct _cef_delete_cookies_callback_t {
237237

238238
///
239239
// Method that will be called upon completion. |num_deleted| will be the
240-
// number of cookies that were deleted or -1 if unknown.
240+
// number of cookies that were deleted.
241241
///
242242
void(CEF_CALLBACK* on_complete)(struct _cef_delete_cookies_callback_t* self,
243243
int num_deleted);

src/include/capi/cef_request_context_capi.h

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
// by hand. See the translator.README.txt file in the tools directory for
3434
// more information.
3535
//
36-
// $hash=cd2b70b906b9f07923d69d9ec0b32488125b0af3$
36+
// $hash=f7f1ec971c726a6a74bcc7f5cee7a8eb1911078d$
3737
//
3838

3939
#ifndef CEF_INCLUDE_CAPI_CEF_REQUEST_CONTEXT_CAPI_H_
@@ -259,17 +259,6 @@ typedef struct _cef_request_context_t {
259259
const cef_string_t* origin,
260260
struct _cef_resolve_callback_t* callback);
261261

262-
///
263-
// Attempts to resolve |origin| to a list of associated IP addresses using
264-
// cached data. |resolved_ips| will be populated with the list of resolved IP
265-
// addresses or NULL if no cached data is available. Returns ERR_NONE on
266-
// success. This function must be called on the browser process IO thread.
267-
///
268-
cef_errorcode_t(CEF_CALLBACK* resolve_host_cached)(
269-
struct _cef_request_context_t* self,
270-
const cef_string_t* origin,
271-
cef_string_list_t resolved_ips);
272-
273262
///
274263
// Load an extension.
275264
//

src/include/cef_api_hash.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
// implementations. See the translator.README.txt file in the tools directory
3535
// for more information.
3636
//
37-
// $hash=e35c4017e9fd0e6371e7abbcaf1b9498a33693f9$
37+
// $hash=b5fa5783096eaa1af5e76645e2557e123af56848$
3838
//
3939

4040
#ifndef CEF_INCLUDE_API_HASH_H_
@@ -47,13 +47,13 @@
4747
// way that may cause binary incompatibility with other builds. The universal
4848
// hash value will change if any platform is affected whereas the platform hash
4949
// values will change only if that particular platform is affected.
50-
#define CEF_API_HASH_UNIVERSAL "21bd75ba6765d8eac60d72b761dca4deeab6c2b8"
50+
#define CEF_API_HASH_UNIVERSAL "8ae24aac4bd16d2e2d87e7d6561985064990670e"
5151
#if defined(OS_WIN)
52-
#define CEF_API_HASH_PLATFORM "b312ae5d3d4346ffaa12ab66d55fe0b31dd719fe"
52+
#define CEF_API_HASH_PLATFORM "fe476e7a38a8270fe783981b4bc6fac4284ab9fe"
5353
#elif defined(OS_MACOSX)
54-
#define CEF_API_HASH_PLATFORM "0ea51921923a950b004c34289e3deaa454eadc58"
54+
#define CEF_API_HASH_PLATFORM "ab1b4d8c4578b0bcdc97f28f13a10384057bdf95"
5555
#elif defined(OS_LINUX)
56-
#define CEF_API_HASH_PLATFORM "964b1ff8bc6acdf35d275112d03faa78b1f3556b"
56+
#define CEF_API_HASH_PLATFORM "73f24626e0179a3f5664d64ffe0fa2aab9edf7cf"
5757
#endif
5858

5959
#ifdef __cplusplus

src/include/cef_base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class CefRefCount {
139139
} \
140140
\
141141
private: \
142-
CefRefCount ref_count_;
142+
CefRefCount ref_count_
143143

144144
///
145145
// Macro that provides a locking implementation. Use the Lock() and Unlock()

src/include/cef_browser_process_handler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
// Class used to implement browser process callbacks. The methods of this class
4848
// will be called on the browser process main thread unless otherwise indicated.
4949
///
50-
/*--cef(source=client)--*/
50+
/*--cef(source=client,no_debugct_check)--*/
5151
class CefBrowserProcessHandler : public virtual CefBaseRefCounted {
5252
public:
5353
///

src/include/cef_cookie.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ class CefDeleteCookiesCallback : public virtual CefBaseRefCounted {
221221
public:
222222
///
223223
// Method that will be called upon completion. |num_deleted| will be the
224-
// number of cookies that were deleted or -1 if unknown.
224+
// number of cookies that were deleted.
225225
///
226226
/*--cef()--*/
227227
virtual void OnComplete(int num_deleted) = 0;

0 commit comments

Comments
 (0)