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 "chrome/browser/ui/ash/launcher/chrome_launcher_controller_mus.h" | 5 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller_mus.h" |
6 | 6 |
7 #include "chrome/browser/profiles/profile_manager.h" | 7 #include "chrome/browser/profiles/profile_manager.h" |
8 #include "chrome/browser/ui/ash/launcher/chrome_mash_shelf_controller.h" | 8 #include "chrome/browser/ui/ash/launcher/chrome_mash_shelf_controller.h" |
9 | 9 |
10 // static | 10 // static |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 return nullptr; | 217 return nullptr; |
218 } | 218 } |
219 | 219 |
220 LauncherItemController* ChromeLauncherControllerMus::GetLauncherItemController( | 220 LauncherItemController* ChromeLauncherControllerMus::GetLauncherItemController( |
221 const ash::ShelfID id) { | 221 const ash::ShelfID id) { |
222 NOTIMPLEMENTED(); | 222 NOTIMPLEMENTED(); |
223 return nullptr; | 223 return nullptr; |
224 } | 224 } |
225 | 225 |
226 bool ChromeLauncherControllerMus::ShelfBoundsChangesProbablyWithUser( | 226 bool ChromeLauncherControllerMus::ShelfBoundsChangesProbablyWithUser( |
227 ash::Shelf* shelf, | 227 ash::WmShelf* shelf, |
228 const AccountId& account_id) const { | 228 const AccountId& account_id) const { |
229 NOTIMPLEMENTED(); | 229 NOTIMPLEMENTED(); |
230 return false; | 230 return false; |
231 } | 231 } |
232 | 232 |
233 void ChromeLauncherControllerMus::OnUserProfileReadyToSwitch(Profile* profile) { | 233 void ChromeLauncherControllerMus::OnUserProfileReadyToSwitch(Profile* profile) { |
234 NOTIMPLEMENTED(); | 234 NOTIMPLEMENTED(); |
235 } | 235 } |
236 | 236 |
237 ArcAppDeferredLauncherController* | 237 ArcAppDeferredLauncherController* |
238 ChromeLauncherControllerMus::GetArcDeferredLauncher() { | 238 ChromeLauncherControllerMus::GetArcDeferredLauncher() { |
239 NOTIMPLEMENTED(); | 239 NOTIMPLEMENTED(); |
240 return nullptr; | 240 return nullptr; |
241 } | 241 } |
OLD | NEW |