1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_
#define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_
#include <memory>
#include <optional>
#include <utility>
#include <vector>
#include "base/functional/callback_helpers.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "build/build_config.h"
#include "content/browser/renderer_host/render_view_host_delegate_view.h"
#include "content/browser/web_contents/web_contents_view.h"
#include "content/browser/web_contents/web_contents_view_drag_security_info.h"
#include "content/common/buildflags.h"
#include "content/common/content_export.h"
#include "content/public/browser/global_routing_id.h"
#include "content/public/browser/visibility.h"
#include "content/public/browser/web_contents_view_delegate.h"
#include "content/public/common/drop_data.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "third_party/blink/public/mojom/choosers/popup_menu.mojom.h"
#include "ui/aura/client/drag_drop_delegate.h"
#include "ui/aura/window.h"
#include "ui/aura/window_delegate.h"
#include "ui/aura/window_tree_host.h"
#include "ui/base/dragdrop/drop_target_event.h"
#include "ui/base/dragdrop/mojom/drag_drop_types.mojom-forward.h"
#include "ui/compositor/layer_tree_owner.h"
namespace ui {
class DropTargetEvent;
class TouchSelectionController;
}
namespace url {
class Origin;
}
namespace content {
class GestureNavSimple;
class RenderWidgetHostImpl;
class RenderWidgetHostViewAura;
class TouchSelectionControllerClientAura;
class WebContentsImpl;
class WebDragDestDelegate;
class CONTENT_EXPORT WebContentsViewAura
: public WebContentsView,
public RenderViewHostDelegateView,
public aura::WindowDelegate,
public aura::client::DragDropDelegate {
public:
WebContentsViewAura(WebContentsImpl* web_contents,
std::unique_ptr<WebContentsViewDelegate> delegate);
~WebContentsViewAura() override;
WebContentsViewAura(const WebContentsViewAura&) = delete;
WebContentsViewAura& operator=(const WebContentsViewAura&) = delete;
// Allow the WebContentsViewDelegate to be set explicitly.
void SetDelegateForTesting(std::unique_ptr<WebContentsViewDelegate> delegate);
// Set a flag to pass nullptr as the parent_view argument to
// RenderWidgetHostViewAura::InitAsChild().
void set_init_rwhv_with_null_parent_for_testing(bool set) {
init_rwhv_with_null_parent_for_testing_ = set;
}
using RenderWidgetHostViewCreateFunction =
RenderWidgetHostViewAura* (*)(RenderWidgetHost*);
// Used to override the creation of RenderWidgetHostViews in tests.
static void InstallCreateHookForTests(
RenderWidgetHostViewCreateFunction create_render_widget_host_view);
private:
// Just the metadata from DropTargetEvent that's safe and cheap to copy to
// help locate drop events in the callback.
struct DropMetadata {
explicit DropMetadata(const ui::DropTargetEvent& event);
// Location local to WebContentsViewAura.
gfx::PointF localized_location;
// Root location of the drop target event.
gfx::PointF root_location;
// The supported DnD operation of the source. A bitmask of
// ui::mojom::DragOperations.
int source_operations;
// Flags from ui::Event. Usually represents modifier keys used at drop time.
int flags;
};
// A structure used to keep drop context for asynchronously finishing a
// drop operation. This is required because some drop event data gets
// cleared out once PerformDropCallback() returns.
struct CONTENT_EXPORT OnPerformingDropContext {
OnPerformingDropContext(RenderWidgetHostImpl* target_rwh,
std::unique_ptr<DropData> drop_data,
DropMetadata drop_metadata,
std::unique_ptr<ui::OSExchangeData> data,
base::ScopedClosureRunner drop_exit_cleanup,
std::optional<gfx::PointF> transformed_pt,
gfx::PointF screen_pt);
OnPerformingDropContext(const OnPerformingDropContext& other) = delete;
OnPerformingDropContext(OnPerformingDropContext&& other);
OnPerformingDropContext& operator=(const OnPerformingDropContext& other) =
delete;
~OnPerformingDropContext();
base::WeakPtr<RenderWidgetHostImpl> target_rwh;
std::unique_ptr<DropData> drop_data;
DropMetadata drop_metadata;
std::unique_ptr<ui::OSExchangeData> data;
base::ScopedClosureRunner drop_exit_cleanup;
std::optional<gfx::PointF> transformed_pt;
gfx::PointF screen_pt;
};
friend class WebContentsViewAuraTest;
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, EnableDisableOverscroll);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, RenderViewHostChanged);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, DragDropFiles);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
DragDropFilesOriginateFromRenderer);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, DragDropImageFromRenderer);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, DragDropVirtualFiles);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
DragDropVirtualFilesOriginateFromRenderer);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
DragDropVirtualFileGetsNonEmptyContents);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, DragDropUrlData);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, DragDropOnOopif);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
Drop_NoDropZone_DelegateAllows);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
Drop_NoDropZone_DelegateBlocks);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
Drop_DropZone_DelegateAllow);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
Drop_DropZone_DelegateBlocks);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, StartDragging);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, GetDropCallback_Run);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
DragInProgressFinishesAfterDrop);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
DragInProgressFinishesAfterNoDrop);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest, GetDropCallback_Cancelled);
FRIEND_TEST_ALL_PREFIXES(
WebContentsViewAuraTest,
RejectDragFromPrivilegedWebContentsToNonPrivilegedWebContents);
FRIEND_TEST_ALL_PREFIXES(
WebContentsViewAuraTest,
AcceptDragFromPrivilegedWebContentsToPrivilegedWebContents);
FRIEND_TEST_ALL_PREFIXES(
WebContentsViewAuraTest,
RejectDragFromNonPrivilegedWebContentsToPrivilegedWebContents);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
StartDragFromPrivilegedWebContents);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
EmptyTextInDropDataIsNonNullInOSExchangeData);
FRIEND_TEST_ALL_PREFIXES(
WebContentsViewAuraTest,
EmptyTextWithUrlInDropDataIsEmptyInOSExchangeDataGetString);
FRIEND_TEST_ALL_PREFIXES(WebContentsViewAuraTest,
UrlInDropDataReturnsUrlInOSExchangeDataGetString);
class WindowObserver;
// Utility to fill a DropData object from ui::OSExchangeData.
void PrepareDropData(DropData* drop_data,
const ui::OSExchangeData& data) const;
void EndDrag(base::WeakPtr<RenderWidgetHostImpl> source_rwh_weak_ptr,
ui::mojom::DragOperation op);
void InstallOverscrollControllerDelegate(RenderWidgetHostViewAura* view);
ui::TouchSelectionController* GetSelectionController() const;
TouchSelectionControllerClientAura* GetSelectionControllerClient() const;
// Returns GetNativeView unless overridden for testing.
gfx::NativeView GetRenderWidgetHostViewParent() const;
// Called from CreateView() to create |window_|.
void CreateAuraWindow(aura::Window* context);
// Computes the view's visibility updates the WebContents accordingly.
void UpdateWebContentsVisibility();
// Computes the view's visibility.
Visibility GetVisibility() const;
// Overridden from WebContentsView:
gfx::NativeView GetNativeView() const override;
gfx::NativeView GetContentNativeView() const override;
gfx::NativeWindow GetTopLevelNativeWindow() const override;
gfx::Rect GetContainerBounds() const override;
void Focus() override;
void SetInitialFocus() override;
void StoreFocus() override;
void RestoreFocus() override;
void FocusThroughTabTraversal(bool reverse) override;
DropData* GetDropData() const override;
gfx::Rect GetViewBounds() const override;
void CreateView(gfx::NativeView context) override;
RenderWidgetHostViewBase* CreateViewForWidget(
RenderWidgetHost* render_widget_host) override;
RenderWidgetHostViewBase* CreateViewForChildWidget(
RenderWidgetHost* render_widget_host) override;
void SetPageTitle(const std::u16string& title) override;
void RenderViewReady() override;
void RenderViewHostChanged(RenderViewHost* old_host,
RenderViewHost* new_host) override;
void SetOverscrollControllerEnabled(bool enabled) override;
void OnCapturerCountChanged() override;
void FullscreenStateChanged(bool is_fullscreen) override;
void UpdateWindowControlsOverlay(const gfx::Rect& bounding_rect) override;
BackForwardTransitionAnimationManager*
GetBackForwardTransitionAnimationManager() override;
void DestroyBackForwardTransitionAnimationManager() override;
// Overridden from RenderViewHostDelegateView:
void ShowContextMenu(RenderFrameHost& render_frame_host,
const ContextMenuParams& params) override;
void StartDragging(const DropData& drop_data,
const url::Origin& source_origin,
blink::DragOperationsMask operations,
const gfx::ImageSkia& image,
const gfx::Vector2d& cursor_offset,
const gfx::Rect& drag_obj_rect,
const blink::mojom::DragEventSourceInfo& event_info,
RenderWidgetHostImpl* source_rwh) override;
void UpdateDragOperation(ui::mojom::DragOperation operation,
bool document_is_handling_drag) override;
void GotFocus(RenderWidgetHostImpl* render_widget_host) override;
void LostFocus(RenderWidgetHostImpl* render_widget_host) override;
void TakeFocus(bool reverse) override;
int GetTopControlsHeight() const override;
int GetBottomControlsHeight() const override;
bool DoBrowserControlsShrinkRendererSize() const override;
#if BUILDFLAG(USE_EXTERNAL_POPUP_MENU)
void ShowPopupMenu(
RenderFrameHost* render_frame_host,
mojo::PendingRemote<blink::mojom::PopupMenuClient> popup_client,
const gfx::Rect& bounds,
double item_font_size,
int selected_item,
std::vector<blink::mojom::MenuItemPtr> menu_items,
bool right_aligned,
bool allow_multiple_selection) override;
#endif
// Overridden from aura::WindowDelegate:
gfx::Size GetMinimumSize() const override;
std::optional<gfx::Size> GetMaximumSize() const override;
void OnBoundsChanged(const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds) override;
gfx::NativeCursor GetCursor(const gfx::Point& point) override;
int GetNonClientComponent(const gfx::Point& point) const override;
bool ShouldDescendIntoChildForEventHandling(
aura::Window* child,
const gfx::Point& location) override;
bool CanFocus() override;
void OnCaptureLost() override;
void OnPaint(const ui::PaintContext& context) override;
void OnDeviceScaleFactorChanged(float old_device_scale_factor,
float new_device_scale_factor) override;
void OnWindowDestroying(aura::Window* window) override;
void OnWindowDestroyed(aura::Window* window) override;
void OnWindowTargetVisibilityChanged(bool visible) override;
void OnWindowOcclusionChanged(
aura::Window::OcclusionState old_occlusion_state,
aura::Window::OcclusionState new_occlusion_state) override;
bool HasHitTestMask() const override;
void GetHitTestMask(SkPath* mask) const override;
// Overridden from ui::EventHandler:
void OnKeyEvent(ui::KeyEvent* event) override;
void OnMouseEvent(ui::MouseEvent* event) override;
// Overridden from aura::client::DragDropDelegate:
void OnDragEntered(const ui::DropTargetEvent& event) override;
aura::client::DragUpdateInfo OnDragUpdated(
const ui::DropTargetEvent& event) override;
void OnDragExited() override;
aura::client::DragDropDelegate::DropCallback GetDropCallback(
const ui::DropTargetEvent& event) override;
void DragEnteredCallback(DropMetadata flags,
std::unique_ptr<DropData> drop_data,
base::WeakPtr<RenderWidgetHostViewBase> target,
std::optional<gfx::PointF> transformed_pt);
void DragUpdatedCallback(DropMetadata drop_metadata,
std::unique_ptr<DropData> drop_data,
base::WeakPtr<RenderWidgetHostViewBase> target,
std::optional<gfx::PointF> transformed_pt);
void PerformDropCallback(DropMetadata drop_metadata,
std::unique_ptr<ui::OSExchangeData> data,
base::WeakPtr<RenderWidgetHostViewBase> target,
std::optional<gfx::PointF> transformed_pt);
// Completes a drag exit operation by communicating with the renderer process.
void CompleteDragExit();
// Called from MaybeLetDelegateProcessDrop() to finish processing the drop.
// The override with `drop_data` updates `current_drag_data_` before
// completing the drop.
void GotModifiedDropDataFromDelegate(OnPerformingDropContext drop_context,
std::optional<DropData> drop_data);
// Completes a drop operation by communicating the drop data to the renderer
// process.
void CompleteDrop(OnPerformingDropContext drop_context);
// Performs drop if it's run. Otherwise, it exits the drag. Returned by
// GetDropCallback.
void PerformDropOrExitDrag(
base::ScopedClosureRunner exit_drag,
DropMetadata drop_metadata,
std::unique_ptr<ui::OSExchangeData> data,
ui::mojom::DragOperation& output_drag_op,
std::unique_ptr<ui::LayerTreeOwner> drag_image_layer_owner);
// Run when drop callback completes to ensure |drag_in_progess_| is
// flipped to false before EndDrag runs.
void OnDropExit(base::ScopedClosureRunner end_drag_runner);
// For unit testing, registers a callback for when a drop operation
// completes.
using DropCallbackForTesting =
base::OnceCallback<void(RenderWidgetHostImpl* target_rwh,
const DropData& drop_data,
const gfx::PointF& client_pt,
const gfx::PointF& screen_pt,
int key_modifiers,
bool drop_allowed)>;
void RegisterDropCallbackForTesting(DropCallbackForTesting callback);
void SetDragDestDelegateForTesting(WebDragDestDelegate* delegate) {
drag_dest_delegate_ = delegate;
}
#if BUILDFLAG(IS_WIN)
// Callback for asynchronous retrieval of virtual files.
void OnGotVirtualFilesAsTempFiles(
OnPerformingDropContext drop_context,
const std::vector<std::pair</*temp path*/ base::FilePath,
/*display name*/ base::FilePath>>&
filepaths_and_names);
class AsyncDropNavigationObserver;
std::unique_ptr<AsyncDropNavigationObserver> async_drop_navigation_observer_;
class AsyncDropTempFileDeleter;
std::unique_ptr<AsyncDropTempFileDeleter> async_drop_temp_file_deleter_;
#endif
DropCallbackForTesting drop_callback_for_testing_;
// Calls the delegate's OnPerformingDrop() if a delegate is present, otherwise
// finishes performing the drop by calling FinishOnPerformingDrop().
void MaybeLetDelegateProcessDrop(OnPerformingDropContext drop_context);
// If this callback is initialized it must be run after the drop operation is
// done to send dragend event in EndDrag function.
base::ScopedClosureRunner end_drag_runner_;
std::unique_ptr<aura::Window> window_;
std::unique_ptr<WindowObserver> window_observer_;
// The WebContentsImpl whose contents we display.
const raw_ptr<WebContentsImpl> web_contents_;
std::unique_ptr<WebContentsViewDelegate> delegate_;
// This member holds the dropped data from the drag enter phase to the end
// of the drop. A drop may end if the user releases the mouse button over
// the view, if the cursor moves off the view, or some other events occurs
// like a change in the RWH. This member is null when no drop is happening.
std::unique_ptr<DropData> current_drag_data_;
raw_ptr<WebDragDestDelegate> drag_dest_delegate_;
// We keep track of the RenderWidgetHost we're dragging over. If it changes
// during a drag, we need to re-send the DragEnter message.
base::WeakPtr<RenderWidgetHostImpl> current_rwh_for_drag_;
// We also keep track of the ID of the RenderViewHost we're dragging over to
// avoid sending the drag exited message after leaving the current view.
GlobalRoutingID current_rvh_for_drag_;
// Holds the security info for the current drag.
WebContentsViewDragSecurityInfo drag_security_info_;
// Responsible for handling gesture-nav and pull-to-refresh UI.
std::unique_ptr<GestureNavSimple> gesture_nav_simple_;
// This is true when the drag is in process from the perspective of this
// class. It means it gets true when drag enters and gets reset when either
// drop happens or drag exits.
bool drag_in_progress_;
bool init_rwhv_with_null_parent_for_testing_;
// Non-null when the WebContents is being captured for video.
std::unique_ptr<aura::WindowTreeHost::VideoCaptureLock> video_capture_lock_;
base::WeakPtrFactory<WebContentsViewAura> weak_ptr_factory_{this};
};
} // namespace content
#endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_
|