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

Side by Side Diff: dbus/mock_object_proxy.cc

Issue 9373039: Allow dbus clients to silence logging when a service is unavailable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use pair, factor out error logging logic Created 8 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "dbus/mock_object_proxy.h" 5 #include "dbus/mock_object_proxy.h"
6 6
7 namespace dbus { 7 namespace dbus {
8 8
9 MockObjectProxy::MockObjectProxy(Bus* bus, 9 MockObjectProxy::MockObjectProxy(Bus* bus,
10 const std::string& service_name, 10 const std::string& service_name,
11 const std::string& object_path) 11 const std::string& object_path)
12 : ObjectProxy(bus, service_name, object_path) { 12 : ObjectProxy(bus, service_name, object_path, DEFAULT_OPTIONS) {
13 } 13 }
14 14
15 MockObjectProxy::~MockObjectProxy() { 15 MockObjectProxy::~MockObjectProxy() {
16 } 16 }
17 17
18 } // namespace dbus 18 } // namespace dbus
OLDNEW
« no previous file with comments | « dbus/mock_bus.h ('k') | dbus/object_proxy.h » ('j') | dbus/object_proxy.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698