Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: dbus/util.cc

Issue 510863002: dbus::ObjectManager: Add a match rule for properties before GetManagedObjects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Round 2 comments Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« dbus/util.h ('K') | « dbus/util.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium 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 #include "dbus/util.h"
6
7 namespace dbus {
8
9 std::string GetAbsoluteMemberName(const std::string& interface_name,
10 const std::string& member_name) {
11 return interface_name + "." + member_name;
satorux1 2014/09/04 04:25:33 It may sound a bit silly to have a unit test for t
armansito 2014/09/05 00:47:11 I'd rather not get this CL any larger, since I int
12 }
13
14 } // namespace dbus
OLDNEW
« dbus/util.h ('K') | « dbus/util.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698