Update generated files for copyright year and bracket style

This commit is contained in:
Marshall Greenblatt
2023-01-02 17:47:15 -05:00
parent c7ffa3a122
commit d84b07a5cb
759 changed files with 12777 additions and 7149 deletions

View File

@@ -1,4 +1,4 @@
// Copyright (c) 2022 The Chromium Embedded Framework Authors. All rights
// Copyright (c) 2023 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
//
@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=4d16f6afcc06cee186ba3aa5752dc5933e6b57f4$
// $hash=185ce5e8dabe003ad884d6ad9dca1947c9c6e27a$
//
#include "libcef_dll/ctocpp/waitable_event_ctocpp.h"
@@ -39,8 +39,9 @@ NO_SANITIZE("cfi-icall") void CefWaitableEventCToCpp::Reset() {
shutdown_checker::AssertNotShutdown();
cef_waitable_event_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, reset))
if (CEF_MEMBER_MISSING(_struct, reset)) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@@ -52,8 +53,9 @@ NO_SANITIZE("cfi-icall") void CefWaitableEventCToCpp::Signal() {
shutdown_checker::AssertNotShutdown();
cef_waitable_event_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, signal))
if (CEF_MEMBER_MISSING(_struct, signal)) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@@ -65,8 +67,9 @@ NO_SANITIZE("cfi-icall") bool CefWaitableEventCToCpp::IsSignaled() {
shutdown_checker::AssertNotShutdown();
cef_waitable_event_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, is_signaled))
if (CEF_MEMBER_MISSING(_struct, is_signaled)) {
return false;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@@ -81,8 +84,9 @@ NO_SANITIZE("cfi-icall") void CefWaitableEventCToCpp::Wait() {
shutdown_checker::AssertNotShutdown();
cef_waitable_event_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, wait))
if (CEF_MEMBER_MISSING(_struct, wait)) {
return;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
@@ -94,8 +98,9 @@ NO_SANITIZE("cfi-icall") bool CefWaitableEventCToCpp::TimedWait(int64 max_ms) {
shutdown_checker::AssertNotShutdown();
cef_waitable_event_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, timed_wait))
if (CEF_MEMBER_MISSING(_struct, timed_wait)) {
return false;
}
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING