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

Side by Side Diff: chromeos/dbus/dbus_thread_manager.cc

Issue 847313003: Fix DBus client binding to Manager interface of peerd. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjust dbus manager variable name Created 5 years, 11 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
« no previous file with comments | « no previous file | chromeos/dbus/peer_daemon_manager_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chromeos/dbus/dbus_thread_manager.h" 5 #include "chromeos/dbus/dbus_thread_manager.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/sys_info.h" 8 #include "base/sys_info.h"
9 #include "base/threading/thread.h" 9 #include "base/threading/thread.h"
10 #include "chromeos/chromeos_switches.h" 10 #include "chromeos/chromeos_switches.h"
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 GetCrosDisksClient()->Init(GetSystemBus()); 304 GetCrosDisksClient()->Init(GetSystemBus());
305 GetCryptohomeClient()->Init(GetSystemBus()); 305 GetCryptohomeClient()->Init(GetSystemBus());
306 GetDebugDaemonClient()->Init(GetSystemBus()); 306 GetDebugDaemonClient()->Init(GetSystemBus());
307 GetEasyUnlockClient()->Init(GetSystemBus()); 307 GetEasyUnlockClient()->Init(GetSystemBus());
308 GetGsmSMSClient()->Init(GetSystemBus()); 308 GetGsmSMSClient()->Init(GetSystemBus());
309 GetImageBurnerClient()->Init(GetSystemBus()); 309 GetImageBurnerClient()->Init(GetSystemBus());
310 GetIntrospectableClient()->Init(GetSystemBus()); 310 GetIntrospectableClient()->Init(GetSystemBus());
311 GetLorgnetteManagerClient()->Init(GetSystemBus()); 311 GetLorgnetteManagerClient()->Init(GetSystemBus());
312 GetModemMessagingClient()->Init(GetSystemBus()); 312 GetModemMessagingClient()->Init(GetSystemBus());
313 GetPermissionBrokerClient()->Init(GetSystemBus()); 313 GetPermissionBrokerClient()->Init(GetSystemBus());
314 GetPeerDaemonManagerClient()->Init(GetSystemBus());
314 GetPowerManagerClient()->Init(GetSystemBus()); 315 GetPowerManagerClient()->Init(GetSystemBus());
315 GetPrivetDaemonClient()->Init(GetSystemBus()); 316 GetPrivetDaemonClient()->Init(GetSystemBus());
316 GetSessionManagerClient()->Init(GetSystemBus()); 317 GetSessionManagerClient()->Init(GetSystemBus());
317 GetShillDeviceClient()->Init(GetSystemBus()); 318 GetShillDeviceClient()->Init(GetSystemBus());
318 GetShillIPConfigClient()->Init(GetSystemBus()); 319 GetShillIPConfigClient()->Init(GetSystemBus());
319 GetShillManagerClient()->Init(GetSystemBus()); 320 GetShillManagerClient()->Init(GetSystemBus());
320 GetShillServiceClient()->Init(GetSystemBus()); 321 GetShillServiceClient()->Init(GetSystemBus());
321 GetShillProfileClient()->Init(GetSystemBus()); 322 GetShillProfileClient()->Init(GetSystemBus());
322 GetShillThirdPartyVpnDriverClient()->Init(GetSystemBus()); 323 GetShillThirdPartyVpnDriverClient()->Init(GetSystemBus());
323 GetSMSClient()->Init(GetSystemBus()); 324 GetSMSClient()->Init(GetSystemBus());
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 client.Pass(); 660 client.Pass();
660 } 661 }
661 662
662 void DBusThreadManagerSetter::SetUpdateEngineClient( 663 void DBusThreadManagerSetter::SetUpdateEngineClient(
663 scoped_ptr<UpdateEngineClient> client) { 664 scoped_ptr<UpdateEngineClient> client) {
664 DBusThreadManager::Get()->client_bundle_->update_engine_client_ = 665 DBusThreadManager::Get()->client_bundle_->update_engine_client_ =
665 client.Pass(); 666 client.Pass();
666 } 667 }
667 668
668 } // namespace chromeos 669 } // namespace chromeos
OLDNEW
« no previous file with comments | « no previous file | chromeos/dbus/peer_daemon_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698