electron/shell/common/atom_command_line.h

39 lines
958 B
C
Raw Normal View History

// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
2019-06-19 13:56:58 -07:00
#ifndef SHELL_COMMON_ATOM_COMMAND_LINE_H_
#define SHELL_COMMON_ATOM_COMMAND_LINE_H_
#include <string>
#include <vector>
#include "base/command_line.h"
2016-03-07 20:38:49 -08:00
#include "base/macros.h"
2016-03-09 22:19:56 +09:00
#include "build/build_config.h"
namespace electron {
2015-03-29 19:59:16 +08:00
// Singleton to remember the original "argc" and "argv".
class AtomCommandLine {
public:
static const base::CommandLine::StringVector& argv() { return argv_; }
static void Init(int argc, base::CommandLine::CharType** argv);
2016-06-02 19:49:36 +09:00
2015-06-19 22:56:10 +08:00
#if defined(OS_LINUX)
// On Linux the command line has to be read from base::CommandLine since
// it is using zygote.
static void InitializeFromCommandLine();
#endif
private:
static base::CommandLine::StringVector argv_;
2016-06-02 19:49:36 +09:00
2015-03-29 19:59:16 +08:00
DISALLOW_IMPLICIT_CONSTRUCTORS(AtomCommandLine);
};
} // namespace electron
2019-06-19 13:56:58 -07:00
#endif // SHELL_COMMON_ATOM_COMMAND_LINE_H_