| 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 "ash/default_accessibility_delegate.h" | 7 #include "ash/default_accessibility_delegate.h" |
| 8 #include "ash/default_user_wallpaper_delegate.h" | 8 #include "ash/default_user_wallpaper_delegate.h" |
| 9 #include "ash/gpu_support_stub.h" | 9 #include "ash/gpu_support_stub.h" |
| 10 #include "ash/media_delegate.h" | 10 #include "ash/media_delegate.h" |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 157 |
| 158 void ShellDelegateMus::RemoveVirtualKeyboardStateObserver( | 158 void ShellDelegateMus::RemoveVirtualKeyboardStateObserver( |
| 159 VirtualKeyboardStateObserver* observer) { | 159 VirtualKeyboardStateObserver* observer) { |
| 160 NOTIMPLEMENTED(); | 160 NOTIMPLEMENTED(); |
| 161 } | 161 } |
| 162 | 162 |
| 163 void ShellDelegateMus::OpenUrl(const GURL& url) { | 163 void ShellDelegateMus::OpenUrl(const GURL& url) { |
| 164 NOTIMPLEMENTED(); | 164 NOTIMPLEMENTED(); |
| 165 } | 165 } |
| 166 | 166 |
| 167 app_list::AppListViewDelegate* ShellDelegateMus::GetAppListViewDelegate() { | 167 app_list::AppListShower* ShellDelegateMus::GetAppListShower() { |
| 168 NOTIMPLEMENTED(); | 168 NOTIMPLEMENTED(); |
| 169 return nullptr; | 169 return nullptr; |
| 170 } | 170 } |
| 171 | 171 |
| 172 ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) { | 172 ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) { |
| 173 return new ShelfDelegateMus(model); | 173 return new ShelfDelegateMus(model); |
| 174 } | 174 } |
| 175 | 175 |
| 176 SystemTrayDelegate* ShellDelegateMus::CreateSystemTrayDelegate() { | 176 SystemTrayDelegate* ShellDelegateMus::CreateSystemTrayDelegate() { |
| 177 NOTIMPLEMENTED() << " Using the default SystemTrayDelegate implementation"; | 177 NOTIMPLEMENTED() << " Using the default SystemTrayDelegate implementation"; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 sysui | 226 } // namespace sysui |
| 227 } // namespace ash | 227 } // namespace ash |
| OLD | NEW |