| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 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 #ifndef ASH_APP_LIST_APP_LIST_DELEGATE_IMPL_H_ | |
| 6 #define ASH_APP_LIST_APP_LIST_DELEGATE_IMPL_H_ | |
| 7 | |
| 8 #include "ash/ash_export.h" | |
| 9 #include "base/macros.h" | |
| 10 #include "ui/app_list/presenter/app_list_delegate.h" | |
| 11 | |
| 12 namespace ash { | |
| 13 | |
| 14 class ASH_EXPORT AppListDelegateImpl : public app_list::AppListDelegate { | |
| 15 public: | |
| 16 explicit AppListDelegateImpl(); | |
| 17 ~AppListDelegateImpl() override; | |
| 18 | |
| 19 private: | |
| 20 // app_list::AppListDelegate: | |
| 21 void OnAppListVisibilityChanged(bool visible, int64_t display_id) override; | |
| 22 | |
| 23 DISALLOW_COPY_AND_ASSIGN(AppListDelegateImpl); | |
| 24 }; | |
| 25 | |
| 26 } // namespace ash | |
| 27 | |
| 28 #endif // ASH_APP_LIST_APP_LIST_DELEGATE_IMPL_H_ | |
| OLD | NEW |