blob: a220395b53efd6a1b9b927f35d1b8156f0c427db [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.
#include "ash/test_shell_delegate.h"
#include "ash/accessibility/default_accessibility_delegate.h"
#include "ash/system/tray/system_tray_notifier.h"
#include "ash/test_screenshot_delegate.h"
#include "base/logging.h"
#include "ui/gfx/image/image.h"
namespace ash {
TestShellDelegate::TestShellDelegate() = default;
TestShellDelegate::~TestShellDelegate() = default;
bool TestShellDelegate::CanShowWindowForUser(const aura::Window* window) const {
return true;
}
std::unique_ptr<ScreenshotDelegate>
TestShellDelegate::CreateScreenshotDelegate() {
return std::make_unique<TestScreenshotDelegate>();
}
AccessibilityDelegate* TestShellDelegate::CreateAccessibilityDelegate() {
return new DefaultAccessibilityDelegate;
}
bool TestShellDelegate::CanGoBack(gfx::NativeWindow window) const {
return can_go_back_;
}
void TestShellDelegate::BindNavigableContentsFactory(
mojo::PendingReceiver<content::mojom::NavigableContentsFactory> receiver) {}
void TestShellDelegate::BindMultiDeviceSetup(
mojo::PendingReceiver<chromeos::multidevice_setup::mojom::MultiDeviceSetup>
receiver) {
if (multidevice_setup_binder_)
multidevice_setup_binder_.Run(std::move(receiver));
}
void TestShellDelegate::SetCanGoBack(bool can_go_back) {
can_go_back_ = can_go_back;
}
} // namespace ash