// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <iostream> #include "base/command_line.h" #include "base/logging.h" #include "base/process/memory.h" #include "build/build_config.h" #include "components/zucchini/main_utils.h" #if BUILDFLAG(IS_WIN) #include "base/win/process_startup_helper.h" #endif // BUILDFLAG(IS_WIN) namespace { void InitLogging() { … } void InitErrorHandling(const base::CommandLine& command_line) { … } } // namespace int main(int argc, const char* argv[]) { … }