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_DRIVEFS_DBUS_CONSTANTS_H_ 6 #define SYSTEM_API_DBUS_DRIVEFS_DBUS_CONSTANTS_H_ 7 8 namespace drivefs { 9 10 const char kDriveFileStreamInterface[] = "org.chromium.DriveFileStream"; 11 const char kDriveFileStreamServicePath[] = "/org/chromium/DriveFileStream"; 12 const char kDriveFileStreamServiceName[] = "org.chromium.DriveFileStream"; 13 14 const char kDriveFileStreamOpenIpcChannelMethod[] = "OpenIpcChannel"; 15 16 } // namespace drivefs 17 18 19 #endif // SYSTEM_API_DBUS_DRIVEFS_DBUS_CONSTANTS_H_ 20