1 // Copyright 2017 The Chromium OS 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 5 #ifndef SWITCHES_MODEMFWD_SWITCHES_H_ 6 #define SWITCHES_MODEMFWD_SWITCHES_H_ 7 8 // This file defines switches that are used by modemfwd. 9 // See its README.md file for more information about what each one does. 10 11 namespace modemfwd { 12 13 const char kGetFirmwareInfo[] = "get_fw_info"; 14 const char kPrepareToFlash[] = "prepare_to_flash"; 15 const char kFlashMainFirmware[] = "flash_main_fw"; 16 const char kFlashCarrierFirmware[] = "flash_carrier_fw"; 17 const char kReboot[] = "reboot"; 18 19 } // namespace modemfwd 20 21 #endif // SWITCHES_MODEMFWD_SWITCHES_H_ 22