| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/mus/shell_delegate_mus.h" | 5 #include "ash/mus/shell_delegate_mus.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "ash/common/gpu_support_stub.h" | 9 #include "ash/common/gpu_support_stub.h" |
| 10 #include "ash/common/media_delegate.h" | 10 #include "ash/common/media_delegate.h" |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 | 148 |
| 149 void ShellDelegateMus::Exit() { | 149 void ShellDelegateMus::Exit() { |
| 150 NOTIMPLEMENTED(); | 150 NOTIMPLEMENTED(); |
| 151 } | 151 } |
| 152 | 152 |
| 153 keyboard::KeyboardUI* ShellDelegateMus::CreateKeyboardUI() { | 153 keyboard::KeyboardUI* ShellDelegateMus::CreateKeyboardUI() { |
| 154 NOTIMPLEMENTED(); | 154 NOTIMPLEMENTED(); |
| 155 return nullptr; | 155 return nullptr; |
| 156 } | 156 } |
| 157 | 157 |
| 158 void ShellDelegateMus::OpenUrl(const GURL& url) { | 158 void ShellDelegateMus::OpenUrlFromArc(const GURL& url) { |
| 159 NOTIMPLEMENTED(); | 159 NOTIMPLEMENTED(); |
| 160 } | 160 } |
| 161 | 161 |
| 162 app_list::AppListPresenter* ShellDelegateMus::GetAppListPresenter() { | 162 app_list::AppListPresenter* ShellDelegateMus::GetAppListPresenter() { |
| 163 return app_list_presenter_.get(); | 163 return app_list_presenter_.get(); |
| 164 } | 164 } |
| 165 | 165 |
| 166 ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) { | 166 ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) { |
| 167 NOTIMPLEMENTED(); | 167 NOTIMPLEMENTED(); |
| 168 return nullptr; | 168 return nullptr; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 NOTIMPLEMENTED(); | 217 NOTIMPLEMENTED(); |
| 218 return base::string16(); | 218 return base::string16(); |
| 219 } | 219 } |
| 220 | 220 |
| 221 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { | 221 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { |
| 222 NOTIMPLEMENTED(); | 222 NOTIMPLEMENTED(); |
| 223 return gfx::Image(); | 223 return gfx::Image(); |
| 224 } | 224 } |
| 225 | 225 |
| 226 } // namespace ash | 226 } // namespace ash |
| OLD | NEW |