blob: fb07fae218ddf2264abecfa4e4fd9e4a9dd6e019 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// 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 <string>
#include <vector>
#include "ash/ash_export.h"
#include "base/callback.h"
#include "base/files/file_path.h"
#include "chromeos/services/multidevice_setup/public/mojom/multidevice_setup.mojom-forward.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "services/device/public/mojom/bluetooth_system.mojom-forward.h"
#include "services/device/public/mojom/fingerprint.mojom-forward.h"
#include "services/media_session/public/cpp/media_session_service.h"
#include "ui/gfx/native_widget_types.h"
namespace aura {
class Window;
}
namespace ui {
class OSExchangeData;
}
namespace full_restore {
struct AppLaunchInfo;
}
namespace ash {
class AccessibilityDelegate;
class CaptureModeDelegate;
class BackGestureContextualNudgeDelegate;
class BackGestureContextualNudgeController;
class NearbyShareController;
class NearbyShareDelegate;
// Delegate of the Shell.
class ASH_EXPORT ShellDelegate {
public:
// 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 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<NearbyShareDelegate> CreateNearbyShareDelegate(
NearbyShareController* controller) 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 SetTabScrubberEnabled(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;
// Drops tab in a new browser window. |drop_data| must be from a tab
// drag as determined by IsTabDrag() above.
virtual aura::Window* CreateBrowserForTabDrop(
aura::Window* source_window,
const ui::OSExchangeData& drop_data);
// Binds a BluetoothSystemFactory receiver if possible.
virtual void BindBluetoothSystemFactory(
mojo::PendingReceiver<device::mojom::BluetoothSystemFactory> receiver) {}
// 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<
chromeos::multidevice_setup::mojom::MultiDeviceSetup> 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;
// 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 description #BentoBar for
// persistent desks bar. Note, this will be removed once the feature is fully
// launched or removed.
virtual void OpenFeedbackPageForPersistentDesksBar() = 0;
// Returns the app launch data that's associated with a particular |window| in
// order to construct a desk template. Return nullptr if no such app launch
// data can be constructed, which can happen if the |window| does not have
// an app id associated with it, or we're not in the primary active user
// session.
virtual std::unique_ptr<::full_restore::AppLaunchInfo>
GetAppLaunchDataForDeskTemplate(aura::Window* window) const = 0;
};
} // namespace ash
#endif // ASH_SHELL_DELEGATE_H_