fix https://github.com/brave/brave-browser/issues/24205 Querying channel info caused crash at startup because channel info is not set on Windows Release build for unittest. Do filtering playlist feature via unexpire_flags.cc instead.
13 lines
559 B
C++
13 lines
559 B
C++
/* Copyright (c) 2021 The Brave Authors. All rights reserved.
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef BRAVE_BROWSER_BRAVE_FEATURES_INTERNAL_NAMES_H_
|
|
#define BRAVE_BROWSER_BRAVE_FEATURES_INTERNAL_NAMES_H_
|
|
|
|
constexpr char kBraveVPNFeatureInternalName[] = "brave-vpn";
|
|
constexpr char kPlaylistFeatureInternalName[] = "playlist";
|
|
|
|
#endif // BRAVE_BROWSER_BRAVE_FEATURES_INTERNAL_NAMES_H_
|