blob: 89973c02c12509a61ad8626f03a895cdd8df172a [file] [log] [blame]
// Copyright 2019 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/shell_delegate.h"
namespace ash {
void ShellDelegate::DesksStateChanged(int num_desks) const {
return;
}
bool ShellDelegate::AllowDefaultTouchActions(gfx::NativeWindow window) {
return true;
}
bool ShellDelegate::ShouldWaitForTouchPressAck(gfx::NativeWindow window) {
return false;
}
bool ShellDelegate::IsTabDrag(const ui::OSExchangeData& drop_data) {
return false;
}
aura::Window* ShellDelegate::CreateBrowserForTabDrop(
aura::Window* source_window,
const ui::OSExchangeData& drop_data) {
return nullptr;
}
media_session::MediaSessionService* ShellDelegate::GetMediaSessionService() {
return nullptr;
}
bool ShellDelegate::IsUiDevToolsStarted() const {
return false;
}
int ShellDelegate::GetUiDevToolsPort() const {
return -1;
}
} // namespace ash