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 SYSTEM_API_DBUS_SMBPROVIDER_DBUS_CONSTANTS_H_ 6 #define SYSTEM_API_DBUS_SMBPROVIDER_DBUS_CONSTANTS_H_ 7 8 namespace smbprovider { 9 10 // General 11 const char kSmbProviderInterface[] = "org.chromium.SmbProvider"; 12 const char kSmbProviderServicePath[] = "/org/chromium/SmbProvider"; 13 const char kSmbProviderServiceName[] = "org.chromium.SmbProvider"; 14 15 // Methods 16 const char kMountMethod[] = "Mount"; 17 const char kUnmountMethod[] = "Unmount"; 18 const char kReadDirectoryMethod[] = "ReadDirectory"; 19 const char kGetMetadataEntryMethod[] = "GetMetadataEntry"; 20 const char kOpenFileMethod[] = "OpenFile"; 21 const char kCloseFileMethod[] = "CloseFile"; 22 const char kReadFileMethod[] = "ReadFile"; 23 const char kDeleteEntryMethod[] = "DeleteEntry"; 24 const char kCreateFileMethod[] = "CreateFile"; 25 const char kTruncateMethod[] = "Truncate"; 26 const char kWriteFileMethod[] = "WriteFile"; 27 const char kCreateDirectoryMethod[] = "CreateDirectory"; 28 const char kMoveEntryMethod[] = "MoveEntry"; 29 const char kCopyEntryMethod[] = "CopyEntry"; 30 31 } // namespace smbprovider 32 33 #endif // SYSTEM_API_DBUS_SMBPROVIDER_DBUS_CONSTANTS_H_ 34