startup_switches.cc 564 B

1234567891011121314151617
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "chromeos/startup/startup_switches.h"
  5. namespace chromeos {
  6. namespace switches {
  7. // FD pointing a (memory backed) file containing the startup data.
  8. const char kCrosStartupDataFD[] = "cros-startup-data-fd";
  9. // FD pointing to an anonymous pipe containing the post-login data.
  10. const char kCrosPostLoginDataFD[] = "cros-postlogin-data-fd";
  11. } // namespace switches
  12. } // namespace chromeos