From 2b1922746fe264ed81b8229582e49f3b16ee3c22 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Tue, 21 Nov 2023 11:22:37 -0500 Subject: [PATCH] Fix minor include and docs errors --- libcef/common/chrome/chrome_main_delegate_cef.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libcef/common/chrome/chrome_main_delegate_cef.cc b/libcef/common/chrome/chrome_main_delegate_cef.cc index 8a8f1bbdb..2c38bae83 100644 --- a/libcef/common/chrome/chrome_main_delegate_cef.cc +++ b/libcef/common/chrome/chrome_main_delegate_cef.cc @@ -35,10 +35,6 @@ #include "libcef/common/util_linux.h" #endif -#if BUILDFLAG(IS_MAC) -#include "libcef/common/util_mac.h" -#endif - namespace { base::LazyInstance::DestructorAtExit @@ -61,7 +57,7 @@ ChromeMainDelegateCef::ChromeMainDelegateCef(CefMainRunnerHandler* runner, ChromeMainDelegateCef::~ChromeMainDelegateCef() = default; absl::optional ChromeMainDelegateCef::BasicStartupComplete() { - // Returns false if startup should proceed. + // Returns no value if startup should proceed. auto result = ChromeMainDelegate::BasicStartupComplete(); if (result.has_value()) { return result;