blob: 3ffa45af8f7f9b6eae8ed33a0fcfae5ee5f55ca5 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module app_list.mojom;
import "services/ui/public/interfaces/window_manager_constants.mojom";
interface AppListPresenter {
// Show the app list on the specified display.
Show(int64 display_id);
// Dismiss the app list.
Dismiss();
// Show the app list (on the specified display) if it is hidden; hide the
// app list if it is shown.
ToggleAppList(int64 display_id);
};