blob: 261c60987430f5966573d32bd087e1f79eb3dd54 [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 "ash/ash_export.h"
#include "base/callback.h"
#include "base/strings/string16.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/data_decoder/public/mojom/data_decoder_service.mojom.h"
#include "ui/gfx/native_widget_types.h"
namespace aura {
class Window;
}
namespace ash {
class AccessibilityDelegate;
class ScreenshotDelegate;
// Delegate of the Shell.
class ASH_EXPORT ShellDelegate {
public:
// The Shell owns the delegate.
virtual ~ShellDelegate() {}
// Returns true if |window| can be shown for the delegate's concept of current
// user.
virtual bool CanShowWindowForUser(const aura::Window* window) const = 0;
// TODO(jamescook): Replace with a mojo-compatible interface.
virtual std::unique_ptr<ScreenshotDelegate> CreateScreenshotDelegate() = 0;
// Creates a accessibility delegate. Shell takes ownership of the delegate.
virtual AccessibilityDelegate* CreateAccessibilityDelegate() = 0;
// Check whether the current tab of the browser window can go back.
virtual bool CanGoBack(gfx::NativeWindow window) const = 0;
virtual void OpenKeyboardShortcutHelpPage() const {}
// Launches an instance of the Data Decoder service and returns a remote
// endpoint to communicate with it. In testing environments, this may return
// a disconnected Remote.
virtual mojo::Remote<data_decoder::mojom::DataDecoderService>
LaunchDataDecoder() = 0;
};
} // namespace ash
#endif // ASH_SHELL_DELEGATE_H_