command_line_args.h 498 B

1234567891011121314151617
  1. // Copyright (c) 2018 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef ELECTRON_SHELL_APP_COMMAND_LINE_ARGS_H_
  5. #define ELECTRON_SHELL_APP_COMMAND_LINE_ARGS_H_
  6. #include "base/command_line.h"
  7. namespace electron {
  8. bool CheckCommandLineArguments(const base::CommandLine::StringVector& argv);
  9. bool IsSandboxEnabled(base::CommandLine* command_line);
  10. } // namespace electron
  11. #endif // ELECTRON_SHELL_APP_COMMAND_LINE_ARGS_H_