blob: 2f5fc1e550379dbfbb9637dfb73e8f4a991e5909 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- chrome/browser/ui/views/frame/browser_widget.h.orig 2025-10-30 15:44:36 UTC
+++ chrome/browser/ui/views/frame/browser_widget.h
@@ -66,7 +66,7 @@ class BrowserWidget : public views::Widget,
~BrowserWidget() override;
-#if BUILDFLAG(IS_LINUX)
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
// Returns whether the frame is in a tiled state.
bool tiled() const { return tiled_; }
void set_tiled(bool tiled) { tiled_ = tiled; }
@@ -198,7 +198,7 @@ class BrowserWidget : public views::Widget,
// contents for smoother dragging.
TabDragKind tab_drag_kind_ = TabDragKind::kNone;
-#if BUILDFLAG(IS_LINUX)
+#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
bool tiled_ = false;
#endif
};
|