blob: 3b546db145da06d04b644a3eeacd094dea9cd155 [file] [log] [blame]
// 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 ASH_SHELL_DELEGATE_H_
#define ASH_SHELL_DELEGATE_H_
#include <memory>
#include <vector>
#include "ash/ash_export.h"
#include "base/files/file_path.h"
#include "chromeos/ash/services/multidevice_setup/public/mojom/multidevice_setup.mojom-forward.h"
#include "chromeos/ui/base/window_pin_type.h"
#include "components/version_info/channel.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "services/device/public/mojom/fingerprint.mojom-forward.h"
#include "services/media_session/public/cpp/media_session_service.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "services/video_capture/public/mojom/multi_capture_service.mojom-forward.h"
#include "ui/gfx/native_widget_types.h"
#include "url/gurl.h"
namespace aura {
class Window;
}
namespace ui {
class OSExchangeData;
}
namespace ash {
class AccessibilityDelegate;
class BackGestureContextualNudgeController;
class BackGestureContextualNudgeDelegate;
class CaptureModeDelegate;
class GameDashboardDelegate;
class GlanceablesController;
class GlanceablesDelegate;
class MediaNotificationProvider;
class NearbyShareController;
class NearbyShareDelegate;
class SavedDeskDelegate;
class SystemSoundsDelegate;
class UserEducationDelegate;
// Delegate of the Shell.
class ASH_EXPORT ShellDelegate {
public:
enum class FeedbackSource {
kWindowLayoutMenu,
};
// The Shell owns the delegate.
virtual ~ShellDelegate() = default;
// Returns true if |window| can be shown for the delegate's concept of current
// user.
virtual bool CanShowWindowForUser(const aura::Window* window) const = 0;
// Creates and returns the delegate of the Capture Mode feature.
virtual std::unique_ptr<CaptureModeDelegate> CreateCaptureModeDelegate()
const = 0;
// Creates and returns the delegate of the Game Dashboard feature.
virtual std::unique_ptr<GameDashboardDelegate> CreateGameDashboardDelegate()
const = 0;
// Creates the delegate for the Glanceables feature.
virtual std::unique_ptr<GlanceablesDelegate> CreateGlanceablesDelegate(
GlanceablesController* controller) const = 0;
// Creates a accessibility delegate. Shell takes ownership of the delegate.
virtual AccessibilityDelegate* CreateAccessibilityDelegate() = 0;
// Creates a back gesture contextual nudge delegate for |controller|.
virtual std::unique_ptr<BackGestureContextualNudgeDelegate>
CreateBackGestureContextualNudgeDelegate(
BackGestureContextualNudgeController* controller) = 0;
virtual std::unique_ptr<MediaNotificationProvider>
CreateMediaNotificationProvider() = 0;
virtual std::unique_ptr<NearbyShareDelegate> CreateNearbyShareDelegate(
NearbyShareController* controller) const = 0;
virtual std::unique_ptr<SavedDeskDelegate> CreateSavedDeskDelegate()
const = 0;
// Creates and returns the delegate of the System Sounds feature.
virtual std::unique_ptr<SystemSoundsDelegate> CreateSystemSoundsDelegate()
const = 0;
// Creates and returns the delegate for user education features.
virtual std::unique_ptr<UserEducationDelegate> CreateUserEducationDelegate()
const = 0;
// Returns the geolocation loader factory used to initialize geolocation
// provider.
virtual scoped_refptr<network::SharedURLLoaderFactory>
GetGeolocationUrlLoaderFactory() const = 0;
// Check whether the current tab of the browser window can go back.
virtual bool CanGoBack(gfx::NativeWindow window) const = 0;
// Sets the tab scrubber |enabled_| field to |enabled|.
virtual void SetTabScrubberChromeOSEnabled(bool enabled) = 0;
// Returns true if |window| allows default touch behaviors. If false, it means
// no default touch behavior is allowed (i.e., the touch action of window is
// cc::TouchAction::kNone). This function is used by BackGestureEventHandler
// to decide if we can perform the system default back gesture.
virtual bool AllowDefaultTouchActions(gfx::NativeWindow window);
// Returns true if we should wait for touch press ack when deciding if back
// gesture can be performed.
virtual bool ShouldWaitForTouchPressAck(gfx::NativeWindow window);
// Checks whether a drag-drop operation is a tab drag.
virtual bool IsTabDrag(const ui::OSExchangeData& drop_data);
// Return the height of WebUI tab strip used to determine if a tab has
// dragged out of it.
virtual int GetBrowserWebUITabStripHeight() = 0;
// Binds a fingerprint receiver in the Device Service if possible.
virtual void BindFingerprint(
mojo::PendingReceiver<device::mojom::Fingerprint> receiver) {}
// Binds a MultiDeviceSetup receiver for the primary profile.
virtual void BindMultiDeviceSetup(
mojo::PendingReceiver<multidevice_setup::mojom::MultiDeviceSetup>
receiver) = 0;
// Binds a MultiCaptureService receiver to start observing
// MultiCaptureStarted() and MultiCaptureStopped() events.
virtual void BindMultiCaptureService(
mojo::PendingReceiver<video_capture::mojom::MultiCaptureService>
receiver) = 0;
// Returns an interface to the Media Session service, or null if not
// available.
virtual media_session::MediaSessionService* GetMediaSessionService();
virtual void OpenKeyboardShortcutHelpPage() const {}
// Returns if window browser sessions are restoring.
virtual bool IsSessionRestoreInProgress() const = 0;
// Adjust system configuration for a Locked Fullscreen window.
virtual void SetUpEnvironmentForLockedFullscreen(bool locked) = 0;
// Ui Dev Tools control.
virtual bool IsUiDevToolsStarted() const;
virtual void StartUiDevTools() {}
virtual void StopUiDevTools() {}
virtual int GetUiDevToolsPort() const;
// Returns true if Chrome was started with --disable-logging-redirect option.
virtual bool IsLoggingRedirectDisabled() const = 0;
// Returns empty path if user session has not started yet, or path to the
// primary user Downloads folder if user has already logged in.
virtual base::FilePath GetPrimaryUserDownloadsFolder() const = 0;
// Opens the feedback page with pre-populated `source` and
// `description_template` fields. Note, this will only be used by features
// before they are fully launched or removed.
virtual void OpenFeedbackDialog(FeedbackSource source,
const std::string& description_template) = 0;
// Returns the last committed URL from the web contents if the given |window|
// contains a browser frame, otherwise returns GURL::EmptyURL().
virtual const GURL& GetLastCommittedURLForWindowIfAny(aura::Window* window);
// Retrieves the release track on which the device resides.
virtual version_info::Channel GetChannel() = 0;
// Tells browsers not to ask the user to confirm that they want to close a
// window when that window is closed.
virtual void ForceSkipWarningUserOnClose(
const std::vector<aura::Window*>& windows) = 0;
// Retrieves the official Chrome version string e.g. 105.0.5178.0.
virtual std::string GetVersionString() = 0;
// Forwards the ShouldExitFullscreenBeforeLock() call to the crosapi browser
// manager.
using ShouldExitFullscreenCallback = base::OnceCallback<void(bool)>;
virtual void ShouldExitFullscreenBeforeLock(
ShouldExitFullscreenCallback callback);
};
} // namespace ash
#endif // ASH_SHELL_DELEGATE_H_