// Copyright 2023 The ChromiumOS Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SYSTEM_API_DBUS_PRINTSCANMGR_DBUS_CONSTANTS_H_ #define SYSTEM_API_DBUS_PRINTSCANMGR_DBUS_CONSTANTS_H_ namespace printscanmgr { const char kPrintscanmgrInterface[] = …; const char kPrintscanmgrServicePath[] = …; const char kPrintscanmgrServiceName[] = …; // Methods. const char kCupsAddManuallyConfiguredPrinter[] = …; const char kCupsAddAutoConfiguredPrinter[] = …; const char kCupsRemovePrinter[] = …; const char kCupsRetrievePpd[] = …; const char kPrintscanDebugSetCategories[] = …; } // namespace printscanmgr #endif // SYSTEM_API_DBUS_PRINTSCANMGR_DBUS_CONSTANTS_H_