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

@@ -83,7 +83,7 @@ class OsrImeHandlerWin {
bool GetString(HIMC imm_context, WPARAM lparam, int type, CefString& result);
// Represents whether or not there is an ongoing composition.
bool is_composing_;
bool is_composing_ = false;
// The current composition character range and its bounds.
std::vector<CefRect> composition_bounds_;
@@ -94,7 +94,7 @@ class OsrImeHandlerWin {
// Represents whether or not the current input context has created a system
// caret to set the position of its IME candidate window.
bool system_caret_;
bool system_caret_ = false;
// The rectangle of the input caret retrieved from a renderer process.
CefRect ime_rect_;