| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "ash/shell/shelf_delegate_impl.h" | |
| 6 | |
| 7 #include "base/strings/string_util.h" | |
| 8 | |
| 9 namespace ash { | |
| 10 namespace shell { | |
| 11 | |
| 12 ShelfDelegateImpl::ShelfDelegateImpl() {} | |
| 13 | |
| 14 ShelfDelegateImpl::~ShelfDelegateImpl() {} | |
| 15 | |
| 16 void ShelfDelegateImpl::OnShelfCreated(Shelf* shelf) {} | |
| 17 | |
| 18 void ShelfDelegateImpl::OnShelfDestroyed(Shelf* shelf) {} | |
| 19 | |
| 20 void ShelfDelegateImpl::OnShelfAlignmentChanged(Shelf* shelf) {} | |
| 21 | |
| 22 void ShelfDelegateImpl::OnShelfAutoHideBehaviorChanged(Shelf* shelf) {} | |
| 23 | |
| 24 void ShelfDelegateImpl::OnShelfAutoHideStateChanged(Shelf* shelf) {} | |
| 25 | |
| 26 void ShelfDelegateImpl::OnShelfVisibilityStateChanged(Shelf* shelf) {} | |
| 27 | |
| 28 ShelfID ShelfDelegateImpl::GetShelfIDForAppID(const std::string& app_id) { | |
| 29 return 0; | |
| 30 } | |
| 31 | |
| 32 bool ShelfDelegateImpl::HasShelfIDToAppIDMapping(ShelfID id) const { | |
| 33 return false; | |
| 34 } | |
| 35 | |
| 36 const std::string& ShelfDelegateImpl::GetAppIDForShelfID(ShelfID id) { | |
| 37 return base::EmptyString(); | |
| 38 } | |
| 39 | |
| 40 void ShelfDelegateImpl::PinAppWithID(const std::string& app_id) {} | |
| 41 | |
| 42 bool ShelfDelegateImpl::IsAppPinned(const std::string& app_id) { | |
| 43 return false; | |
| 44 } | |
| 45 | |
| 46 void ShelfDelegateImpl::UnpinAppWithID(const std::string& app_id) {} | |
| 47 | |
| 48 } // namespace shell | |
| 49 } // namespace ash | |
| OLD | NEW |