blob: cc8b4b3efb18ff292301a14f40ef3a4d6c1998f7 [file] [log] [blame]
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SYSTEM_API_DBUS_SMBPROVIDER_DBUS_CONSTANTS_H_
#define SYSTEM_API_DBUS_SMBPROVIDER_DBUS_CONSTANTS_H_
namespace smbprovider {
// General
const char kSmbProviderInterface[] = "org.chromium.SmbProvider";
const char kSmbProviderServicePath[] = "/org/chromium/SmbProvider";
const char kSmbProviderServiceName[] = "org.chromium.SmbProvider";
// Methods
const char kMountMethod[] = "Mount";
const char kUnmountMethod[] = "Unmount";
const char kReadDirectoryMethod[] = "ReadDirectory";
const char kGetMetadataEntryMethod[] = "GetMetadataEntry";
const char kOpenFileMethod[] = "OpenFile";
const char kCloseFileMethod[] = "CloseFile";
} // namespace smbprovider
#endif // SYSTEM_API_DBUS_SMBPROVIDER_DBUS_CONSTANTS_H_