summaryrefslogtreecommitdiff
path: root/chromium/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-04 17:20:24 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-12 08:15:25 +0000
commit8fa0776f1f79e91fc9c0b9c1ba11a0a29c05196b (patch)
tree788d8d7549712682703a0310ca4a0f0860d4802b /chromium/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
parent606d85f2a5386472314d39923da28c70c60dc8e7 (diff)
downloadqtwebengine-chromium-8fa0776f1f79e91fc9c0b9c1ba11a0a29c05196b.tar.gz
BASELINE: Update Chromium to 98.0.4758.90
Change-Id: Ib7c41539bf8a8e0376bd639f27d68294de90f3c8 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/ui/views/widget/desktop_aura/desktop_native_widget_aura.h')
-rw-r--r--chromium/ui/views/widget/desktop_aura/desktop_native_widget_aura.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/ui/views/widget/desktop_aura/desktop_native_widget_aura.h b/chromium/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
index 8d808737887..6b2b6794e1c 100644
--- a/chromium/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
+++ b/chromium/ui/views/widget/desktop_aura/desktop_native_widget_aura.h
@@ -8,7 +8,7 @@
#include <memory>
#include <string>
-#include "base/macros.h"
+#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/strings/string_piece.h"
#include "ui/aura/client/drag_drop_delegate.h"
@@ -277,7 +277,7 @@ class VIEWS_EXPORT DesktopNativeWidgetAura
void NotifyAccessibilityEvent(ax::mojom::Event event_type);
std::unique_ptr<aura::WindowTreeHost> host_;
- DesktopWindowTreeHost* desktop_window_tree_host_;
+ raw_ptr<DesktopWindowTreeHost> desktop_window_tree_host_;
// See class documentation for Widget in widget.h for a note about ownership.
Widget::InitParams::Ownership ownership_;
@@ -289,9 +289,9 @@ class VIEWS_EXPORT DesktopNativeWidgetAura
// This is the return value from GetNativeView().
// WARNING: this may be NULL, in particular during shutdown it becomes NULL.
- aura::Window* content_window_;
+ raw_ptr<aura::Window> content_window_;
- internal::NativeWidgetDelegate* native_widget_delegate_;
+ raw_ptr<internal::NativeWidgetDelegate> native_widget_delegate_;
std::unique_ptr<wm::FocusController> focus_client_;
std::unique_ptr<aura::client::ScreenPositionClient> position_client_;