summaryrefslogtreecommitdiff
path: root/chromium/components/app_restore/features.h
blob: 62d118a2cbe8ff52d295ad8852a8d1a44c777786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_APP_RESTORE_FEATURES_H_
#define COMPONENTS_APP_RESTORE_FEATURES_H_

#include "base/component_export.h"
#include "base/feature_list.h"

namespace full_restore {
namespace features {

// Enables the window state and bounds predictor and full ghost window for ARC++
// apps.
COMPONENT_EXPORT(APP_RESTORE) BASE_DECLARE_FEATURE(kArcWindowPredictor);

// Enables the full restore for Lacros feature. If this is enabled, we will
// restore apps and app windows opened with Lacros after a crash or reboot.
COMPONENT_EXPORT(APP_RESTORE) BASE_DECLARE_FEATURE(kFullRestoreForLacros);

COMPONENT_EXPORT(APP_RESTORE) bool IsArcWindowPredictorEnabled();

COMPONENT_EXPORT(APP_RESTORE) bool IsFullRestoreForLacrosEnabled();

}  // namespace features
}  // namespace full_restore

#endif  // COMPONENTS_APP_RESTORE_FEATURES_H_