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

This commit is contained in:
Marshall Greenblatt
2024-01-20 17:48:57 -05:00
parent 4ea1b6f293
commit a02d2ab3e6
158 changed files with 639 additions and 686 deletions

View File

@@ -30,7 +30,7 @@ class CefContext {
virtual void OnContextDestroyed() = 0;
protected:
virtual ~Observer() {}
virtual ~Observer() = default;
};
CefContext();
@@ -98,11 +98,11 @@ class CefContext {
void FinalizeShutdown();
// Track context state.
bool initialized_;
bool shutting_down_;
bool initialized_ = false;
bool shutting_down_ = false;
// The thread on which the context was initialized.
base::PlatformThreadId init_thread_id_;
base::PlatformThreadId init_thread_id_ = 0;
CefSettings settings_;
CefRefPtr<CefApp> application_;