15 lines
433 B
C
15 lines
433 B
C
|
// Copyright (c) 2022 Slack Technologies, Inc.
|
||
|
// Use of this source code is governed by the MIT license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#ifndef ELECTRON_SHELL_BROWSER_NATIVE_WINDOW_FEATURES_H_
|
||
|
#define ELECTRON_SHELL_BROWSER_NATIVE_WINDOW_FEATURES_H_
|
||
|
|
||
|
#include "base/feature_list.h"
|
||
|
|
||
|
namespace features {
|
||
|
extern const base::Feature kWaylandWindowDecorations;
|
||
|
}
|
||
|
|
||
|
#endif // ELECTRON_SHELL_BROWSER_NATIVE_WINDOW_FEATURES_H_
|