Home | History | Annotate | Download | only in oobe_config
      1 // Copyright 2018 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 SYSTEM_API_DBUS_OOBE_CONFIG_DBUS_CONSTANTS_H_
      6 #define SYSTEM_API_DBUS_OOBE_CONFIG_DBUS_CONSTANTS_H_
      7 
      8 namespace oobe_config {
      9 
     10 // General
     11 const char kOobeConfigRestoreInterface[] = "org.chromium.OobeConfigRestore";
     12 const char kOobeConfigRestoreServicePath[] = "/org/chromium/OobeConfigRestore";
     13 const char kOobeConfigRestoreServiceName[] = "org.chromium.OobeConfigRestore";
     14 
     15 // Methods
     16 const char kProcessAndGetOobeAutoConfigMethod[] = "ProcessAndGetOobeAutoConfig";
     17 
     18 }  // namespace oobe_config
     19 
     20 #endif  // SYSTEM_API_DBUS_OOBE_CONFIG_DBUS_CONSTANTS_H_
     21