1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
headless / lib / browser / command_line_handler.h [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef HEADLESS_LIB_BROWSER_COMMAND_LINE_HANDLER_H_
#define HEADLESS_LIB_BROWSER_COMMAND_LINE_HANDLER_H_
#include "base/command_line.h"
#include "headless/public/headless_browser.h"
namespace headless {
bool HandleCommandLineSwitches(base::CommandLine& command_line,
HeadlessBrowser::Options& options);
} // namespace headless
#endif // HEADLESS_LIB_BROWSER_COMMAND_LINE_HANDLER_H_