1 // Copyright 2019 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "ash/shell_delegate.h"
6 
7 namespace ash {
8 
AllowDefaultTouchActions(gfx::NativeWindow window)9 bool ShellDelegate::AllowDefaultTouchActions(gfx::NativeWindow window) {
10   return true;
11 }
12 
ShouldWaitForTouchPressAck(gfx::NativeWindow window)13 bool ShellDelegate::ShouldWaitForTouchPressAck(gfx::NativeWindow window) {
14   return false;
15 }
16 
IsTabDrag(const ui::OSExchangeData & drop_data)17 bool ShellDelegate::IsTabDrag(const ui::OSExchangeData& drop_data) {
18   return false;
19 }
20 
CreateBrowserForTabDrop(aura::Window * source_window,const ui::OSExchangeData & drop_data)21 aura::Window* ShellDelegate::CreateBrowserForTabDrop(
22     aura::Window* source_window,
23     const ui::OSExchangeData& drop_data) {
24   return nullptr;
25 }
26 
GetMediaSessionService()27 media_session::MediaSessionService* ShellDelegate::GetMediaSessionService() {
28   return nullptr;
29 }
30 
31 }  // namespace ash
32