blob: 0319e00612c012b51cd4ebc1abc4644104a7c82e [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.
#ifndef CONTENT_SHELL_COMMON_WEB_TEST_WEB_TEST_SWITCHES_H_
#define CONTENT_SHELL_COMMON_WEB_TEST_WEB_TEST_SWITCHES_H_
#include <string>
#include <vector>
#include "build/build_config.h"
namespace switches {
extern const char kAllowExternalPages[];
extern const char kCrashOnFailure[];
extern const char kDebugDevTools[];
extern const char kEnableAccelerated2DCanvas[];
extern const char kEnableFontAntialiasing[];
extern const char kAlwaysUseComplexText[];
extern const char kEnableLeakDetection[];
extern const char kEncodeBinary[];
extern const char kStableReleaseMode[];
extern const char kDisableHeadlessMode[];
#if defined(OS_WIN)
extern const char kRegisterFontFiles[];
// Returns list of extra font files to be made accessible to the renderer, that
// are specified via kRegisterFontFiles.
std::vector<std::string> GetSideloadFontFiles();
#endif
} // namespace switches
#endif // CONTENT_SHELL_COMMON_WEB_TEST_WEB_TEST_SWITCHES_H_