chore: replace absl::optional<T> with std::optional<T> (#40928)
* chore: replace absl::optional<T> with std::optional<T> * IWYU
This commit is contained in:
parent
fac964ac0d
commit
892c9d78a3
129 changed files with 419 additions and 397 deletions
|
@ -8,6 +8,7 @@
|
|||
#include "shell/browser/native_window.h"
|
||||
|
||||
#include <memory>
|
||||
#include <optional>
|
||||
#include <set>
|
||||
#include <string>
|
||||
|
||||
|
@ -304,7 +305,7 @@ class NativeWindowViews : public NativeWindow,
|
|||
// Whether the window is currently being moved.
|
||||
bool is_moving_ = false;
|
||||
|
||||
absl::optional<gfx::Rect> pending_bounds_change_;
|
||||
std::optional<gfx::Rect> pending_bounds_change_;
|
||||
|
||||
// The color to use as the theme and symbol colors respectively for Window
|
||||
// Controls Overlay if enabled on Windows.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue