| Index: ash/shell/shelf_delegate_impl.cc
|
| diff --git a/ash/shell/shelf_delegate_impl.cc b/ash/shell/shelf_delegate_impl.cc
|
| index b77da8bc71c45327bc719de16e0291bef77102b6..48e7e3be522b3071827aae1fe0c862e0c4375b68 100644
|
| --- a/ash/shell/shelf_delegate_impl.cc
|
| +++ b/ash/shell/shelf_delegate_impl.cc
|
| @@ -11,14 +11,15 @@ namespace shell {
|
|
|
| ShelfDelegateImpl::ShelfDelegateImpl() {}
|
|
|
| -ShelfDelegateImpl::~ShelfDelegateImpl() {
|
| -}
|
| +ShelfDelegateImpl::~ShelfDelegateImpl() {}
|
|
|
| -void ShelfDelegateImpl::OnShelfCreated(Shelf* shelf) {
|
| -}
|
| +void ShelfDelegateImpl::OnShelfCreated(Shelf* shelf) {}
|
|
|
| -void ShelfDelegateImpl::OnShelfDestroyed(Shelf* shelf) {
|
| -}
|
| +void ShelfDelegateImpl::OnShelfDestroyed(Shelf* shelf) {}
|
| +
|
| +void ShelfDelegateImpl::OnShelfAlignmentChanged(Shelf* shelf) {}
|
| +
|
| +void ShelfDelegateImpl::OnShelfAutoHideBehaviorChanged(Shelf* shelf) {}
|
|
|
| ShelfID ShelfDelegateImpl::GetShelfIDForAppID(const std::string& app_id) {
|
| return 0;
|
| @@ -32,15 +33,13 @@ const std::string& ShelfDelegateImpl::GetAppIDForShelfID(ShelfID id) {
|
| return base::EmptyString();
|
| }
|
|
|
| -void ShelfDelegateImpl::PinAppWithID(const std::string& app_id) {
|
| -}
|
| +void ShelfDelegateImpl::PinAppWithID(const std::string& app_id) {}
|
|
|
| bool ShelfDelegateImpl::IsAppPinned(const std::string& app_id) {
|
| return false;
|
| }
|
|
|
| -void ShelfDelegateImpl::UnpinAppWithID(const std::string& app_id) {
|
| -}
|
| +void ShelfDelegateImpl::UnpinAppWithID(const std::string& app_id) {}
|
|
|
| } // namespace shell
|
| } // namespace ash
|
|
|