Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Side by Side Diff: ash/mus/shell_delegate_mus.cc

Issue 2437393002: Remove ash::ShellDelegate::IsFirstRunAfterBoot method (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/mus/shell_delegate_mus.h ('k') | ash/root_window_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « ash/mus/shell_delegate_mus.h ('k') | ash/root_window_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698