Ken Rockot | b2ac2f1 | 2019-12-06 18:33:54 | [diff] [blame] | 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 | |
Collin Baker | aec4387 | 2020-05-07 20:28:57 | [diff] [blame] | 9 | aura::Window* ShellDelegate::CreateBrowserForTabDrop( |
| 10 | aura::Window* source_window, |
Collin Baker | 1ca0b7a3 | 2020-04-14 18:33:00 | [diff] [blame] | 11 | const ui::OSExchangeData& drop_data) { |
Collin Baker | aec4387 | 2020-05-07 20:28:57 | [diff] [blame] | 12 | return nullptr; |
Collin Baker | 1ca0b7a3 | 2020-04-14 18:33:00 | [diff] [blame] | 13 | } |
| 14 | |
Ken Rockot | b2ac2f1 | 2019-12-06 18:33:54 | [diff] [blame] | 15 | media_session::mojom::MediaSessionService* |
| 16 | ShellDelegate::GetMediaSessionService() { |
| 17 | return nullptr; |
| 18 | } |
| 19 | |
| 20 | } // namespace ash |