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

Side by Side Diff: ui/app_list/presenter/app_list_delegate.h

Issue 2647833003: Adds AppListDelegate to AppList that is notified on visibility changes (Closed)
Patch Set: move Created 3 years, 11 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
« no previous file with comments | « ui/app_list/presenter/app_list.cc ('k') | ui/app_list/presenter/app_list_presenter.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 UI_APP_LIST_PRESENTER_APP_LIST_DELEGATE_H_
6 #define UI_APP_LIST_PRESENTER_APP_LIST_DELEGATE_H_
7
8 #include <stdint.h>
9
10 #include "ui/app_list/presenter/app_list_presenter_export.h"
11
12 namespace app_list {
13
14 class APP_LIST_PRESENTER_EXPORT AppListDelegate {
15 public:
16 // Called when the visility of the app list changes. |display_id| is the
17 // id of the display containing the app list.
18 virtual void OnAppListVisibilityChanged(bool visible, int64_t display_id) = 0;
19
20 protected:
21 virtual ~AppListDelegate() {}
22 };
23
24 } // namespace app_list
25
26 #endif // UI_APP_LIST_PRESENTER_APP_LIST_DELEGATE_H_
OLDNEW
« no previous file with comments | « ui/app_list/presenter/app_list.cc ('k') | ui/app_list/presenter/app_list_presenter.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698