
The methodology used to generate this CL is documented in https://crbug.com/1098010#c34. No-Try: true Bug: 1098010 Change-Id: Id0e774f0a2778c9651c064cabd38146f92989536 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3894315 Owners-Override: Avi Drissman <avi@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org> Reviewed-by: Mark Mentovai <mark@chromium.org> Auto-Submit: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/main@{#1046513}
15 lines
392 B
C++
15 lines
392 B
C++
// Copyright 2014 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "dbus/util.h"
|
|
|
|
namespace dbus {
|
|
|
|
std::string GetAbsoluteMemberName(const std::string& interface_name,
|
|
const std::string& member_name) {
|
|
return interface_name + "." + member_name;
|
|
}
|
|
|
|
} // namespace dbus
|