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

Side by Side Diff: ash/app_list/app_list_delegate_impl.h

Issue 2898743002: Draggable peeking/fullscreen launcher with transparent background. (Closed)
Patch Set: Addressed comments. Created 3 years, 6 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698