blob: 591b0b66ad2a91aa54e44c34f971b4099393e779 [file] [log] [blame]
// Copyright 2016 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_PORT_CLASSIC_H_
#define ASH_SHELL_PORT_CLASSIC_H_
#include <memory>
#include <vector>
#include "ash/ash_export.h"
#include "ash/shell_port.h"
#include "base/macros.h"
namespace ash {
class PointerWatcherAdapterClassic;
// Implementation of ShellPort for classic ash/aura. See ash/README.md for more
// details.
class ASH_EXPORT ShellPortClassic : public ShellPort {
public:
ShellPortClassic();
~ShellPortClassic() override;
static ShellPortClassic* Get();
// ShellPort:
void Shutdown() override;
Config GetAshConfig() const override;
std::unique_ptr<display::TouchTransformSetter> CreateTouchTransformDelegate()
override;
void LockCursor() override;
void UnlockCursor() override;
void ShowCursor() override;
void HideCursor() override;
void SetCursorSize(ui::CursorSize cursor_size) override;
void SetGlobalOverrideCursor(base::Optional<ui::CursorData> cursor) override;
bool IsMouseEventsEnabled() override;
void SetCursorTouchVisible(bool enabled) override;
std::unique_ptr<WindowResizer> CreateDragWindowResizer(
std::unique_ptr<WindowResizer> next_window_resizer,
wm::WindowState* window_state) override;
std::unique_ptr<WindowCycleEventFilter> CreateWindowCycleEventFilter()
override;
std::unique_ptr<wm::TabletModeEventHandler> CreateTabletModeEventHandler()
override;
std::unique_ptr<WorkspaceEventHandler> CreateWorkspaceEventHandler(
aura::Window* workspace_window) override;
std::unique_ptr<KeyboardUI> CreateKeyboardUI() override;
void AddPointerWatcher(views::PointerWatcher* watcher,
views::PointerWatcherEventTypes events) override;
void RemovePointerWatcher(views::PointerWatcher* watcher) override;
bool IsTouchDown() override;
void ToggleIgnoreExternalKeyboard() override;
void CreatePointerWatcherAdapter() override;
std::unique_ptr<AshWindowTreeHost> CreateAshWindowTreeHost(
const AshWindowTreeHostInitParams& init_params) override;
void OnCreatedRootWindowContainers(
RootWindowController* root_window_controller) override;
void UpdateSystemModalAndBlockingContainers() override;
void OnHostsInitialized() override;
std::unique_ptr<display::NativeDisplayDelegate> CreateNativeDisplayDelegate()
override;
std::unique_ptr<AcceleratorController> CreateAcceleratorController() override;
void AddVideoDetectorObserver(
viz::mojom::VideoDetectorObserverPtr observer) override;
private:
std::unique_ptr<PointerWatcherAdapterClassic> pointer_watcher_adapter_;
DISALLOW_COPY_AND_ASSIGN(ShellPortClassic);
};
} // namespace ash
#endif // ASH_SHELL_PORT_CLASSIC_H_