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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 : connector_(connector), app_list_presenter_(connector) { | 114 : connector_(connector), app_list_presenter_(connector) { |
115 // |connector_| may be null in tests. | 115 // |connector_| may be null in tests. |
116 } | 116 } |
117 | 117 |
118 ShellDelegateMus::~ShellDelegateMus() {} | 118 ShellDelegateMus::~ShellDelegateMus() {} |
119 | 119 |
120 service_manager::Connector* ShellDelegateMus::GetShellConnector() const { | 120 service_manager::Connector* ShellDelegateMus::GetShellConnector() const { |
121 return connector_; | 121 return connector_; |
122 } | 122 } |
123 | 123 |
124 bool ShellDelegateMus::IsFirstRunAfterBoot() const { | |
125 NOTIMPLEMENTED(); | |
126 return false; | |
127 } | |
128 | |
129 bool ShellDelegateMus::IsIncognitoAllowed() const { | 124 bool ShellDelegateMus::IsIncognitoAllowed() const { |
130 NOTIMPLEMENTED(); | 125 NOTIMPLEMENTED(); |
131 return false; | 126 return false; |
132 } | 127 } |
133 | 128 |
134 bool ShellDelegateMus::IsMultiProfilesEnabled() const { | 129 bool ShellDelegateMus::IsMultiProfilesEnabled() const { |
135 NOTIMPLEMENTED(); | 130 NOTIMPLEMENTED(); |
136 return false; | 131 return false; |
137 } | 132 } |
138 | 133 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 NOTIMPLEMENTED(); | 230 NOTIMPLEMENTED(); |
236 return base::string16(); | 231 return base::string16(); |
237 } | 232 } |
238 | 233 |
239 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { | 234 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { |
240 NOTIMPLEMENTED(); | 235 NOTIMPLEMENTED(); |
241 return gfx::Image(); | 236 return gfx::Image(); |
242 } | 237 } |
243 | 238 |
244 } // namespace ash | 239 } // namespace ash |
OLD | NEW |