17 lines
647 B
C++
17 lines
647 B
C++
/* Copyright 2020 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_COMPONENTS_SPEEDREADER_SPEEDREADER_SWITCHES_H_
|
|
#define BRAVE_COMPONENTS_SPEEDREADER_SPEEDREADER_SWITCHES_H_
|
|
|
|
namespace speedreader {
|
|
|
|
constexpr char kSpeedreaderWhitelist[] = "speedreader-whitelist";
|
|
constexpr char kSpeedreaderWhitelistPath[] = "speedreader-whitelist-path";
|
|
|
|
} // namespace speedreader
|
|
|
|
#endif // BRAVE_COMPONENTS_SPEEDREADER_SPEEDREADER_SWITCHES_H_
|