tests: Format with clang-tidy (see #3632)

This commit is contained in:
Marshall Greenblatt
2024-01-19 21:22:56 -05:00
parent 9fd312ce04
commit 0a64bb6f9b
108 changed files with 505 additions and 647 deletions

View File

@@ -5,6 +5,7 @@
#include "tests/cefclient/browser/main_context_impl.h"
#include <algorithm>
#include <memory>
#include "include/cef_parser.h"
#include "tests/cefclient/browser/test_runner.h"
@@ -288,8 +289,8 @@ bool MainContextImpl::Initialize(const CefMainArgs& args,
// Need to create the RootWindowManager after calling CefInitialize because
// TempWindowX11 uses cef_get_xdisplay().
root_window_manager_.reset(
new RootWindowManager(terminate_when_all_windows_closed_));
root_window_manager_ =
std::make_unique<RootWindowManager>(terminate_when_all_windows_closed_);
initialized_ = true;