Skip to content

Commit cf47543

Browse files
committed
update to CEF113
1 parent cdba0f7 commit cf47543

12 files changed

Lines changed: 10846 additions & 10627 deletions

src/extern/cef/cef_types.pxd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,5 +411,5 @@ cdef extern from "include/internal/cef_types.h":
411411
FOCUS_SOURCE_SYSTEM,
412412

413413
cdef cppclass CefRange:
414-
int from_val "from"
415-
int to_val "to"
414+
uint32 from_val "from"
415+
uint32 to_val "to"

src/include/base/internal/cef_net_error_list.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -814,10 +814,9 @@ NET_ERROR(TOO_MANY_ACCEPT_CH_RESTARTS, -382)
814814
// request should be invalidated.
815815
NET_ERROR(INCONSISTENT_IP_ADDRESS_SPACE, -383)
816816

817-
// The IP address space of the cached remote endpoint is blocked by private
817+
// The IP address space of the cached remote endpoint is blocked by local
818818
// network access check.
819-
NET_ERROR(CACHED_IP_ADDRESS_SPACE_BLOCKED_BY_PRIVATE_NETWORK_ACCESS_POLICY,
820-
-384)
819+
NET_ERROR(CACHED_IP_ADDRESS_SPACE_BLOCKED_BY_LOCAL_NETWORK_ACCESS_POLICY, -384)
821820

822821
// The cache does not have the requested entry.
823822
NET_ERROR(CACHE_MISS, -400)

src/include/capi/views/cef_browser_view_delegate_capi.h

Lines changed: 13 additions & 1 deletion
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=e38c41a553d518abcd1b912d32281e99b93c4fd7$
36+
// $hash=94e93810316b74e54eb315d97c6fc6f1cc0c9cc5$
3737
//
3838

3939
#ifndef CEF_INCLUDE_CAPI_VIEWS_CEF_BROWSER_VIEW_DELEGATE_CAPI_H_
@@ -120,6 +120,18 @@ typedef struct _cef_browser_view_delegate_t {
120120
///
121121
cef_chrome_toolbar_type_t(CEF_CALLBACK* get_chrome_toolbar_type)(
122122
struct _cef_browser_view_delegate_t* self);
123+
124+
///
125+
/// Called when |browser_view| receives a gesture command. Return true (1) to
126+
/// handle (or disable) a |gesture_command| or false (0) to propagate the
127+
/// gesture to the browser for default handling. This function will only be
128+
/// called with the Alloy runtime. To handle these commands with the Chrome
129+
/// runtime implement cef_command_handler_t::OnChromeCommand instead.
130+
///
131+
int(CEF_CALLBACK* on_gesture_command)(
132+
struct _cef_browser_view_delegate_t* self,
133+
struct _cef_browser_view_t* browser_view,
134+
cef_gesture_command_t gesture_command);
123135
} cef_browser_view_delegate_t;
124136

125137
#ifdef __cplusplus

src/include/cef_api_hash.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242
// way that may cause binary incompatibility with other builds. The universal
4343
// hash value will change if any platform is affected whereas the platform hash
4444
// values will change only if that particular platform is affected.
45-
#define CEF_API_HASH_UNIVERSAL "7c7515822b869395898c705bcc350222c26e8734"
45+
#define CEF_API_HASH_UNIVERSAL "509090f3945a0c74991845085f47240f11389523"
4646
#if defined(OS_WIN)
47-
#define CEF_API_HASH_PLATFORM "54e2eed5aee11d5dbd88808a54f3e93a7bc17b0c"
47+
#define CEF_API_HASH_PLATFORM "1c9ed9d86408e2d84cf88d4a8c865a2872eb40bd"
4848
#elif defined(OS_MAC)
49-
#define CEF_API_HASH_PLATFORM "0f491b440d7e9e318146ed06cdeca86972e801c5"
49+
#define CEF_API_HASH_PLATFORM "8cc9baa9653847ce54b2da84431d573bc3669505"
5050
#elif defined(OS_LINUX)
51-
#define CEF_API_HASH_PLATFORM "b5a01a70d1d15078988ca7d694c355503d5b5ad6"
51+
#define CEF_API_HASH_PLATFORM "741b042aa3d663f9e4ffad0b59d1bfb4faa03e70"
5252
#endif
5353

5454
#ifdef __cplusplus

src/include/cef_command_ids.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,9 @@
213213
#define IDC_CHROME_WHATS_NEW 40264
214214
#define IDC_LACROS_DATA_MIGRATION 40265
215215
#define IDC_PERFORMANCE 40266
216+
#define IDC_EXTENSIONS_SUBMENU 40267
217+
#define IDC_EXTENSIONS_SUBMENU_MANAGE_EXTENSIONS 40268
218+
#define IDC_EXTENSIONS_SUBMENU_VISIT_CHROME_WEB_STORE 40269
216219
#define IDC_SPELLCHECK_SUGGESTION_0 41000
217220
#define IDC_SPELLCHECK_SUGGESTION_1 41001
218221
#define IDC_SPELLCHECK_SUGGESTION_2 41002

0 commit comments

Comments
 (0)