Chromium Code Reviews| 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/gpu_support_stub.h" | 9 #include "ash/gpu_support_stub.h" |
| 10 #include "ash/mus/accessibility_delegate_mus.h" | 10 #include "ash/mus/accessibility_delegate_mus.h" |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 148 base::string16 ShellDelegateMus::GetProductName() const { | 148 base::string16 ShellDelegateMus::GetProductName() const { |
| 149 NOTIMPLEMENTED(); | 149 NOTIMPLEMENTED(); |
| 150 return base::string16(); | 150 return base::string16(); |
| 151 } | 151 } |
| 152 | 152 |
| 153 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { | 153 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { |
| 154 NOTIMPLEMENTED(); | 154 NOTIMPLEMENTED(); |
| 155 return gfx::Image(); | 155 return gfx::Image(); |
| 156 } | 156 } |
| 157 | 157 |
| 158 PrefService* ShellDelegateMus::GetActiveUserPrefService() const { | |
| 159 NOTIMPLEMENTED(); | |
|
sky
2017/04/26 18:14:00
Shouldn't this be a NOTREACHED?
afakhry
2017/04/26 18:36:46
Yes, right. Done.
| |
| 160 return nullptr; | |
| 161 } | |
| 162 | |
| 158 bool ShellDelegateMus::IsTouchscreenEnabledInPrefs(bool use_local_state) const { | 163 bool ShellDelegateMus::IsTouchscreenEnabledInPrefs(bool use_local_state) const { |
| 159 NOTIMPLEMENTED(); | 164 NOTIMPLEMENTED(); |
| 160 return true; | 165 return true; |
| 161 } | 166 } |
| 162 | 167 |
| 163 void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, | 168 void ShellDelegateMus::SetTouchscreenEnabledInPrefs(bool enabled, |
| 164 bool use_local_state) { | 169 bool use_local_state) { |
| 165 NOTIMPLEMENTED(); | 170 NOTIMPLEMENTED(); |
| 166 } | 171 } |
| 167 | 172 |
| 168 void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { | 173 void ShellDelegateMus::UpdateTouchscreenStatusFromPrefs() { |
| 169 NOTIMPLEMENTED(); | 174 NOTIMPLEMENTED(); |
| 170 } | 175 } |
| 171 | 176 |
| 172 } // namespace ash | 177 } // namespace ash |
| OLD | NEW |